| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net6.0</TargetFramework>
- <RootNamespace>ET</RootNamespace>
- <AssemblyName>Robot</AssemblyName>
- </PropertyGroup>
- <PropertyGroup>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <OutputPath>../../Bin/</OutputPath>
- <DefineConstants>TRACE2_0;NOT_UNITY;SERVER;</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <OutputPath>../../Bin/</OutputPath>
- <DefineConstants>TRACE2_0;SERVER;NOT_UNITY</DefineConstants>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="NLog" Version="4.7.12" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Hotfix\Robot.Hotfix.csproj" />
- <ProjectReference Include="..\Model\Robot.Model.csproj" />
- </ItemGroup>
- <ItemGroup>
- <None Update="NLog.config">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|