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