Skip to content

Commit

Permalink
Update FaultInjection.csproj
Browse files Browse the repository at this point in the history
  • Loading branch information
NaluTripician committed Nov 28, 2024
1 parent 7b4128a commit 97730ae
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions Microsoft.Azure.Cosmos/FaultInjection/src/FaultInjection.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,23 @@
<SdkProjectRef>True</SdkProjectRef>
<ClientVersion>$(FaultInjectionVersion)</ClientVersion>
<VersionSuffix>$(FaultInjectionSuffixVersion)</VersionSuffix>
<Title>Microsoft Azure Cosmos DB Fault Injection library</Title>
<PackageId>Microsoft.Azure.Cosmos.FaultInjection</PackageId>
<PackageTags>microsoft;azure;cosmos;cosmosdb;documentdb;docdb;nosql;azureofficial;dotnetcore;netcore;netstandard</PackageTags>
<PackageReleaseNotes>The change log for this SDK is made available at https://github.com/Azure/azure-cosmos-dotnet-v3/blob/master/Microsoft.Azure.Cosmos/FaultInjection/changelog.md at the time of release.</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/Azure/azure-cosmos-dotnet-v3/tree/master/Microsoft.Azure.Cosmos/FaultInjection</PackageProjectUrl>
<PublishRepositoryUrl Condition=" '$(ProjectRef)' != 'True' ">true</PublishRepositoryUrl>
<PackageIconUrl>http://go.microsoft.com/fwlink/?LinkID=288890</PackageIconUrl>
<PackageIcon>Icon.png</PackageIcon>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PlatformTarget>AnyCPU</PlatformTarget>
<ShippingScope>External</ShippingScope>
<SigningType>Product</SigningType>
<DebugType>portable</DebugType>
<IncludeSymbols>false</IncludeSymbols>
<IncludeSource>false</IncludeSource>
</PropertyGroup>

<ItemGroup Condition=" '$(SdkProjectRef)' != 'True' ">
Expand All @@ -39,9 +56,14 @@
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>

<PropertyGroup>
<PropertyGroup Condition=" '$(ProjectRef)' != 'True' ">
<SignAssembly>true</SignAssembly>
<DelaySign>true</DelaySign>
<AssemblyOriginatorKeyFile>..\..\..\testkey.snk</AssemblyOriginatorKeyFile>
<AssemblyOriginatorKeyFile>..\..\..\35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>

<PropertyGroup>
<DefineConstants Condition=" '$(SignAssembly)' == 'true' ">$(DefineConstants);SignAssembly</DefineConstants>
<DefineConstants Condition=" '$(DelaySign)' == 'true' ">$(DefineConstants);DelaySignKeys</DefineConstants>
</PropertyGroup>
</Project>

0 comments on commit 97730ae

Please sign in to comment.