forked from Azure/azure-powershell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTools.Common.Netcore.csproj
34 lines (27 loc) · 1.27 KB
/
Tools.Common.Netcore.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>Tools.Common</AssemblyName>
<RootNamespace>Tools.Common</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DelaySign>false</DelaySign>
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DelaySign>false</DelaySign>
<DefineConstants>TRACE;NETSTANDARD</DefineConstants>
</PropertyGroup>
<Import Project="$(MSBuildThisFileDirectory)..\Az.nonprod.props" />
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="PowerShellStandard.Library" Version="5.1.0" PrivateAssets="All" />
<PackageReference Include="System.Reflection.MetadataLoadContext" Version="5.0.0" />
<PackageReference Include="System.Runtime.Loader" Version="4.0.0" />
</ItemGroup>
<ItemGroup>
<Content Include="SerializedCmdlets\*.json" CopyToOutputDirectory="PreserveNewest" />
<Content Include="AzureStackExceptions.csv" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>