Skip to content

Commit ade7afb

Browse files
author
SDKAuto
committed
CodeGen from PR 3207 in test-repo-billy/azure-rest-api-specs
Merge 1f924dd2b806880b15c874ef98eaffd2606edd34 into 3430f822fc0e515e7215a4f50db1fd69f54788af
1 parent c7768c2 commit ade7afb

File tree

453 files changed

+72338
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

453 files changed

+72338
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
bin
2+
obj
3+
.vs
4+
tools
5+
test/*-TestResults.xml
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<Version>0.1.0</Version>
5+
<LangVersion>7.1</LangVersion>
6+
<TargetFramework>netstandard2.0</TargetFramework>
7+
<OutputType>Library</OutputType>
8+
<AssemblyName>Az.ServiceLinker.private</AssemblyName>
9+
<RootNamespace>Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker</RootNamespace>
10+
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
11+
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
12+
<OutputPath>./bin</OutputPath>
13+
<PublishDir>$(OutputPath)</PublishDir>
14+
<NuspecFile>Az.ServiceLinker.nuspec</NuspecFile>
15+
<NoPackageAnalysis>true</NoPackageAnalysis>
16+
<!-- Some methods are marked async and don't have an await in them -->
17+
<!-- warning CS1591: Missing XML comment for publicly visible type or member -->
18+
<NoWarn>1998, 1591</NoWarn>
19+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
20+
<WarningsAsErrors />
21+
</PropertyGroup>
22+
23+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
24+
<DelaySign>false</DelaySign>
25+
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants>
26+
</PropertyGroup>
27+
28+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
29+
<SignAssembly>true</SignAssembly>
30+
<DelaySign>true</DelaySign>
31+
<AssemblyOriginatorKeyFile>MSSharedLibKey.snk</AssemblyOriginatorKeyFile>
32+
<DefineConstants>TRACE;RELEASE;NETSTANDARD;SIGN</DefineConstants>
33+
</PropertyGroup>
34+
35+
<ItemGroup>
36+
<PackageReference Include="PowerShellStandard.Library" Version="5.1.0" />
37+
<PackageReference Include="Microsoft.CSharp" Version="4.4.1" />
38+
</ItemGroup>
39+
40+
<PropertyGroup>
41+
<DefaultItemExcludes>$(DefaultItemExcludes);resources/**</DefaultItemExcludes>
42+
</PropertyGroup>
43+
44+
</Project>

0 commit comments

Comments
 (0)