Skip to content

Commit fcc4385

Browse files
author
SDKAuto
committed
CodeGen from PR 32067 in Azure/azure-rest-api-specs
Merge 8b261d110e0a32622f5af7e0018589901df3f77a into 8a4eca6b060cf70da696963245656fdc440b666b
1 parent dd82de4 commit fcc4385

File tree

2,883 files changed

+593982
-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.

2,883 files changed

+593982
-0
lines changed
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

swaggerci/app.DefaultTag/.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
bin
2+
obj
3+
.vs
4+
tools
5+
test/*-TestResults.xml
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.ContainerAppsApi.private</AssemblyName>
9+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
10+
<RootNamespace>Microsoft.Azure.PowerShell.Cmdlets.ContainerAppsApi</RootNamespace>
11+
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
12+
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
13+
<OutputPath>./bin</OutputPath>
14+
<PublishDir>$(OutputPath)</PublishDir>
15+
<NuspecFile>Az.ContainerAppsApi.nuspec</NuspecFile>
16+
<NoPackageAnalysis>true</NoPackageAnalysis>
17+
<!-- Some methods are marked async and don't have an await in them -->
18+
<!-- warning CS1591: Missing XML comment for publicly visible type or member -->
19+
<NoWarn>1998, 1591</NoWarn>
20+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
21+
<WarningsAsErrors />
22+
</PropertyGroup>
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)