-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathCommon.csproj
More file actions
73 lines (61 loc) · 2.68 KB
/
Copy pathCommon.csproj
File metadata and controls
73 lines (61 loc) · 2.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IncludeHyak>true</IncludeHyak>
<IsCmdletProject>true</IsCmdletProject>
</PropertyGroup>
<Import Project="$(ProjectDir)..\Dependencies.Client.targets" />
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>Microsoft.Azure.PowerShell.Common</AssemblyName>
<RootNamespace>Microsoft.WindowsAzure.Commands.Common</RootNamespace>
<OutputPath>$(ProjectDir)..\..\artifacts\$(Configuration)</OutputPath>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<Title>Microsoft Azure PowerShell Common</Title>
<Description>Microsoft Azure PowerShell Common library. Only for use with the Azure PowerShell runtime. Not intended for general development use.</Description>
<PackageTags>azure;powershell;common</PackageTags>
<Authors>Microsoft Corporation</Authors>
<Copyright>Copyright © Microsoft Corporation</Copyright>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageProjectUrl>https://github.com/Azure/azure-powershell-common</PackageProjectUrl>
<PackageOutputPath>$(ProjectDir)..\..\artifacts\Package\$(Configuration)</PackageOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DelaySign>false</DelaySign>
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<SignAssembly>true</SignAssembly>
<DelaySign>true</DelaySign>
<AssemblyOriginatorKeyFile>..\MSSharedLibKey.snk</AssemblyOriginatorKeyFile>
<DefineConstants>TRACE;RELEASE;NETSTANDARD;SIGN</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>true</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Share\Share.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Authentication.Abstractions\Authentication.Abstractions.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.18.0" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE.txt" Link="LICENSE.txt" Pack="true" PackagePath="" />
</ItemGroup>
</Project>