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