2021-08-10 11:08:41 -04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2014-03-14 14:13:41 -04:00
|
|
|
<PropertyGroup>
|
2022-05-09 21:00:57 -04:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2016-09-14 19:52:44 -04:00
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Development</Configuration>
|
2014-03-14 14:13:41 -04:00
|
|
|
<OutputType>Exe</OutputType>
|
2020-12-02 06:57:13 -04:00
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
|
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
|
|
|
|
|
<Configurations>Debug;Release;Development</Configurations>
|
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
2014-03-14 14:13:41 -04:00
|
|
|
<RootNamespace>AutomationToolLauncher</RootNamespace>
|
|
|
|
|
<AssemblyName>AutomationToolLauncher</AssemblyName>
|
2020-12-02 06:57:13 -04:00
|
|
|
<WarningsNotAsErrors>612,618</WarningsNotAsErrors>
|
|
|
|
|
<OutputPath>..\..\..\Binaries\DotNET\AutomationToolLauncher</OutputPath>
|
2014-03-14 14:13:41 -04:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Development|AnyCPU' ">
|
2020-12-02 06:57:13 -04:00
|
|
|
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
|
2014-03-14 14:13:41 -04:00
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
</PropertyGroup>
|
2020-12-02 06:57:13 -04:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
|
|
|
|
|
<Optimize>true</Optimize>
|
2019-01-14 12:11:24 -05:00
|
|
|
</PropertyGroup>
|
2020-12-02 06:57:13 -04:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2014-03-14 14:13:41 -04:00
|
|
|
<ItemGroup>
|
2021-08-10 11:08:41 -04:00
|
|
|
<Compile Include="..\Shared\MetaData.cs">
|
2014-03-14 14:13:41 -04:00
|
|
|
<Link>Properties\MetaData.cs</Link>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
2019-01-14 12:11:24 -05:00
|
|
|
</Project>
|