forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAzure.Security.KeyVault.Secrets.csproj
46 lines (39 loc) · 2.35 KB
/
Azure.Security.KeyVault.Secrets.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>This is the Microsoft Azure Key Vault Secrets client library</Description>
<AssemblyTitle>Microsoft Azure.Security.KeyVault.Secrets client library</AssemblyTitle>
<Version>4.1.0-preview.1</Version>
<PackageTags>Microsoft Azure Key Vault Secrets;$(PackageCommonTags)</PackageTags>
<PackageReleaseNotes>
<![CDATA[
- `Secret` has been renamed to `KeyVaultSecret` to avoid ambiguity with other libraries and to yield better search results.
- `SecretClient.GetSecrets` and `SecretClient.GetSecretVersions` have been renamed to `SecretClient.GetPropertiesOfSecrets` and `SecretClient.GetPropertiesOfSecretVersions` respectively.
- `SecretClient.DeleteSecret` has been renamed to `SecretClient.StartDeleteSecret` and now returns a `DeleteSecretOperation` to track this long-running operation.
See https://github.com/Azure/azure-sdk-for-net/tree/Azure.Security.KeyVault.Secrets_4.0.0/sdk/keyvault/Azure.Security.KeyVault.Secrets/ChangeLog.md for more detailed changes.
]]>
</PackageReleaseNotes>
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
<NoWarn>$(NoWarn);3021</NoWarn>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<Import Project="..\..\Azure.Security.KeyVault.Shared\src\Azure.Security.KeyVault.Shared.projitems" Label="Shared" />
<!-- Import the Azure.Core project -->
<Import Project="$(MSBuildThisFileDirectory)..\..\..\core\Azure.Core\src\Azure.Core.props" />
<ItemGroup>
<Compile Include="$(AzureCoreSharedSources)Argument.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Memory" />
<PackageReference Include="System.Text.Json" />
<PackageReference Include="System.Threading.Tasks.Extensions" />
</ItemGroup>
<ItemGroup>
<Compile Include="$(AzureCoreSharedSources)ArrayBufferWriter.cs" />
<Compile Include="$(AzureCoreSharedSources)ClientDiagnostics.cs" />
<Compile Include="$(AzureCoreSharedSources)ContentTypeUtilities.cs" />
<Compile Include="$(AzureCoreSharedSources)DiagnosticScope.cs" />
<Compile Include="$(AzureCoreSharedSources)PageResponseEnumerator.cs" />
<Compile Include="$(AzureCoreSharedSources)ResponseExceptionExtensions.cs" />
<Compile Include="$(AzureCoreSharedSources)OperationHelpers.cs" />
</ItemGroup>
</Project>