Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
d1d9431
start with core
annelo-msft Sep 12, 2023
e110bb5
one more
annelo-msft Sep 13, 2023
079555e
remove shared source refs from test projects
annelo-msft Sep 13, 2023
ea0bf56
Add graphs
annelo-msft Sep 13, 2023
457c4be
shared namespace
annelo-msft Sep 13, 2023
e49e4de
using shared
annelo-msft Sep 13, 2023
2fd8a53
argument
annelo-msft Sep 13, 2023
1b9326d
update graph
annelo-msft Sep 13, 2023
a3688f4
namespaces
annelo-msft Sep 13, 2023
011de68
namespaces
annelo-msft Sep 13, 2023
5262d9b
namespaces
annelo-msft Sep 13, 2023
1d73dea
Azure.Maps.Rendering - HLC example
annelo-msft Sep 13, 2023
ef36995
HLC graph
annelo-msft Sep 13, 2023
5741dfb
DPG example
annelo-msft Sep 13, 2023
b054459
update
annelo-msft Sep 13, 2023
63358fd
purview - 1
annelo-msft Sep 13, 2023
3fd8c88
purview
annelo-msft Sep 13, 2023
faa1158
purview.scanning graph - paging, but not operations
annelo-msft Sep 13, 2023
eb0874a
CLU - conversations; operations
annelo-msft Sep 13, 2023
e7b3e0a
DPG with operations - graph
annelo-msft Sep 13, 2023
ac8d87e
update
annelo-msft Sep 13, 2023
4b10b41
Merge remote-tracking branch 'upstream/main' into core-shared-graphs
annelo-msft Sep 13, 2023
b3e1192
data factory
annelo-msft Sep 13, 2023
9a7fc80
updates
annelo-msft Sep 13, 2023
c653fba
routing
annelo-msft Sep 13, 2023
ba9c94e
add graph for routing
annelo-msft Sep 13, 2023
2aec267
nits
annelo-msft Sep 13, 2023
78b4179
monitor WIP
annelo-msft Sep 14, 2023
ab39158
Merge remote-tracking branch 'upstream/main' into core-shared-graphs
annelo-msft Sep 14, 2023
ab924e4
updates
annelo-msft Sep 14, 2023
845dc4a
nits
annelo-msft Sep 14, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion eng/Directory.Build.Common.targets
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@

<!-- Add Client SDK Tools -->
<ItemGroup>
<PackageReference Condition="'$(IsClientLibrary)' == 'true'" Include="Microsoft.Azure.AutoRest.CSharp" PrivateAssets="All" />
<!-- <PackageReference Condition="'$(IsClientLibrary)' == 'true' and !$(MSBuildProjectName.StartsWith('Azure.Core.TestFramework'))" Include="Microsoft.Azure.AutoRest.CSharp" PrivateAssets="All" /> -->

<PackageReference Condition="'$(GenerateAPIListing)' == 'true'" Include="Microsoft.DotNet.GenAPI" PrivateAssets="All" />

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
using System.Threading.Tasks;
using Azure.Core;
using Azure.Core.Pipeline;
using Azure.Core.Shared.Asserts;
using Azure.Core.Shared.AuthPolicies;
using Azure.Core.Shared.Pipeline.Diagnostics;

namespace Azure.AI.Language.Conversations.Authoring
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<ApiCompatVersion>1.1.0</ApiCompatVersion>
<PackageTags>Azure AI Language Conversations LUIS</PackageTags>
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
<IncludeOperationsSharedSource>true</IncludeOperationsSharedSource>
</PropertyGroup>

<ItemGroup>
Expand All @@ -17,9 +16,49 @@

<!-- Shared source from Azure.Core -->
<ItemGroup>
<Compile Include="$(AzureCoreSharedSources)ArrayBufferWriter.cs" LinkBase="Shared" />
<Compile Include="$(AzureCoreSharedSources)Argument.cs" LinkBase="Shared" />

<Compile Include="$(AzureCoreSharedSources)AzureKeyCredentialPolicy.cs" LinkBase="Shared" />

<Compile Include="$(AzureCoreSharedSources)AzureResourceProviderNamespaceAttribute.cs" LinkBase="Shared" />

<Compile Include="$(AzureCoreSharedSources)CodeGenSuppressTypeAttribute.cs" LinkBase="Shared" />
<Compile Include="$(AzureCoreSharedSources)CodeGenClientAttribute.cs" LinkBase="Shared" />
<Compile Include="$(AzureCoreSharedSources)CodeGenTypeAttribute.cs" LinkBase="Shared" />

<Compile Include="$(AzureCoreSharedSources)AppContextSwitchHelper.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)ClientDiagnostics.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)DiagnosticScope.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)DiagnosticScopeFactory.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)HttpMessageSanitizer.cs" LinkBase="Shared/Core" />

<Compile Include="$(AzureCoreSharedSources)HttpPipelineExtensions.cs" LinkBase="Shared/Core" />

<Compile Include="$(AzureCoreSharedSources)ProtocolOperationHelpers.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)OperationFinalStateVia.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)VoidValue.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)ProtocolOperation.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)OperationInternal.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)OperationInternalBase.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)OperationInternalOfT.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)OperationPoller.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)NextLinkOperationImplementation.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)IOperationSource.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)TaskExtensions.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)AsyncLockWithValue.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)Utf8JsonWriterExtensions.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)TypeFormatters.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)IUtf8JsonSerializable.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)JsonElementExtensions.cs" LinkBase="Shared/Core" />
<Compile Include="$(AzureCoreSharedSources)FixedDelayWithNoJitterStrategy.cs" LinkBase="Shared/Core" />

<Compile Include="$(AzureCoreSharedSources)RawRequestUriBuilder.cs" LinkBase="Shared\Core" />
<Compile Include="$(AzureCoreSharedSources)RequestUriBuilderExtensions.cs" LinkBase="Shared\Core" />

<Compile Include="$(AzureCoreSharedSources)GeneratorPageableHelpers.cs" LinkBase="Shared\Core" />
<Compile Include="$(AzureCoreSharedSources)PageableHelpers.cs" LinkBase="Shared\Core" />


</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
using System.Threading.Tasks;
using Azure.Core;
using Azure.Core.Pipeline;
using Azure.Core.Shared.Asserts;
using Azure.Core.Shared.AuthPolicies;
using Azure.Core.Shared.Pipeline.Diagnostics;

namespace Azure.AI.Language.Conversations
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System;
using System.ComponentModel;
using Azure.Core;
using Azure.Core.Shared.Asserts;

namespace Azure.AI.Language.Conversations
{
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

[assembly: Azure.Core.AzureResourceProviderNamespace("Microsoft.CognitiveServices")]
[assembly: Azure.Core.Shared.Attributes.AzureResourceProviderNamespace("Microsoft.CognitiveServices")]
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<Nullable>enable</Nullable>
<TargetFrameworks>$(RequiredTargetFrameworks);net461;net6.0</TargetFrameworks>
<NoWarn>$(NoWarn);AZC0001;AZC0012</NoWarn>
<IncludeOperationsSharedSource>true</IncludeOperationsSharedSource>
</PropertyGroup>

<ItemGroup>
Expand All @@ -16,6 +15,7 @@
</ItemGroup>

<ItemGroup>
<Compile Include="$(AzureCoreSharedSources)Argument.cs" />
<Compile Include="$(AzureCoreSharedSources)HashCodeBuilder.cs" />
<Compile Include="$(AzureCoreSharedSources)NullableAttributes.cs" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
using System.Reflection;
using System.Text.Json;
using System.Text.Json.Serialization;
using Azure.Core.Shared.Json;
using Azure.Core.Shared.JsonWriter;

namespace Azure.Core.Expressions.DataFactory
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Licensed under the MIT License.

using System;
using Azure.Core.Shared.Asserts;

namespace Azure.Core.Expressions.DataFactory
{
Expand Down Expand Up @@ -79,4 +80,4 @@ public override int GetHashCode()
/// <inheritdoc />
public override string ToString() => _kind ?? "";
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
using System;
using System.Text.Json;
using System.Text.Json.Serialization;
using Azure.Core.Shared.JsonWriter;
using Azure.Core.Shared.Models;
using Azure.Core.Shared.Serialization;

namespace Azure.Core.Expressions.DataFactory
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
#nullable disable

using System;
using Azure.Core.Shared;
using Azure.Core.Shared.Asserts;

namespace Azure.Core.Expressions.DataFactory
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
using System.Collections.Generic;
using System.Text.Json;
using System.Text.Json.Serialization;
using Azure.Core.Shared.Models;
using Azure.Core.Shared.Serialization;

namespace Azure.Core.Expressions.DataFactory
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
using System;
using System.Collections.Generic;
using Azure.Core;
using Azure.Core.Shared;
using Azure.Core.Shared.Asserts;
using Azure.Core.Shared.Models;

namespace Azure.Core.Expressions.DataFactory
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using System.Text.Json;
using System.Text.Json.Serialization;
using Azure.Core;
using Azure.Core.Shared.Serialization;

namespace Azure.Core.Expressions.DataFactory
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

using Azure.Core.Shared;

namespace Azure.Core.Expressions.DataFactory
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System;
using System.Text.Json;
using System.Text.Json.Serialization;
using Azure.Core.Shared.Serialization;

namespace Azure.Core.Expressions.DataFactory
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
// Licensed under the MIT License.

using System;
using Azure.Core.Shared;
using Azure.Core.Shared.Asserts;

namespace Azure.Core.Expressions.DataFactory
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

using System.Text.Json;
using Azure.Core;
using Azure.Core.Shared.Serialization;

namespace Azure.Core.Expressions.DataFactory
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

using System;
using System.Globalization;
using Azure.Core.Shared.Asserts;

namespace Azure.Core
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,32 @@
</ItemGroup>
<!-- Import Azure.Core shared source -->
<ItemGroup>
<!-- can we remove the line below? -->
<Compile Remove="Shared\*.cs" />

<Compile Include="$(AzureCoreSharedSources)ConnectionString.cs" LinkBase="Shared\Core" />
<Compile Include="$(AzureCoreSharedSources)ContentTypeUtilities.cs" LinkBase="Shared\Core" />
<Compile Include="$(AzureCoreSharedSources)DictionaryHeaders.cs" LinkBase="Shared\Core" />
<Compile Include="$(AzureCoreSharedSources)EventSourceEventFormatting.cs" LinkBase="Shared\Core" />

<!--
<Compile Include="$(AzureCoreSharedSources)IUtf8JsonSerializable.cs" LinkBase="Shared\Core" />

<Compile Include="$(AzureCoreSharedSources)OperationPoller.cs" LinkBase="Shared\Core" />
<Compile Include="$(AzureCoreSharedSources)OperationInternalBase.cs" LinkBase="Shared\Core" />
<Compile Include="$(AzureCoreSharedSources)OperationInternalOfT.cs" LinkBase="Shared\Core" />
<Compile Include="$(AzureCoreSharedSources)AsyncLockWithValue.cs" LinkBase="Shared\Core" />

<Compile Include="$(AzureCoreSharedSources)ClientDiagnostics.cs" LinkBase="Shared\Core" />
<Compile Include="$(AzureCoreSharedSources)DiagnosticScope.cs" LinkBase="Shared\Core" />
<Compile Include="$(AzureCoreSharedSources)DiagnosticScopeFactory.cs" LinkBase="Shared\Core" />
<Compile Include="$(AzureCoreSharedSources)HttpMessageSanitizer.cs" LinkBase="Shared\Core" />


<Compile Include="$(AzureCoreSharedSources)ResponseWithHeaders.cs" LinkBase="Shared\Core" />
<Compile Include="$(AzureCoreSharedSources)ResponseWithHeadersOfTHeaders.cs" LinkBase="Shared\Core" />
<Compile Include="$(AzureCoreSharedSources)ResponseWithHeadersOfTOfTHeaders.cs" LinkBase="Shared\Core" />-->

</ItemGroup>

<ItemGroup>
Expand Down
Loading