Skip to content

Commit 57f045d

Browse files
author
SDKAuto
committed
CodeGen from PR 21223 in Azure/azure-rest-api-specs
Merge e005c57144a1297e29168e39262bd18c450e67e8 into f7386016ed8edfdc59d00003c1298afa6966842c
1 parent 43bd025 commit 57f045d

File tree

605 files changed

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

605 files changed

+118574
-0
lines changed

swaggerci/postgresql/.gitattributes

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

swaggerci/postgresql/.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
+44
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.PostgreSql.private</AssemblyName>
9+
<RootNamespace>Microsoft.Azure.PowerShell.Cmdlets.PostgreSql</RootNamespace>
10+
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
11+
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
12+
<OutputPath>./bin</OutputPath>
13+
<PublishDir>$(OutputPath)</PublishDir>
14+
<NuspecFile>Az.PostgreSql.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)