forked from Azure/azure-powershell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBatchModelGenerator.csproj
38 lines (31 loc) · 1.27 KB
/
BatchModelGenerator.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
35
36
37
38
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$(MSBuildThisFileDirectory)..\..\Repo.props" />
<Import Project="$(RepoTools)Common.Netcore.Dependencies.targets" />
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<AssemblyName>BatchModelGenerator</AssemblyName>
<RootNamespace>BatchModelGenerator</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
<IsPackable>false</IsPackable>
<DelaySign>false</DelaySign>
<ApplicationIcon />
<OutputType>Exe</OutputType>
<StartupObject />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;RELEASE;NETSTANDARD</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Remove="GeneratedFiles\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.CodeDom" Version="4.5.0" />
</ItemGroup>
</Project>