Robot.App.csproj 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <RootNamespace>ET</RootNamespace>
  6. <AssemblyName>Robot</AssemblyName>
  7. </PropertyGroup>
  8. <PropertyGroup>
  9. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  10. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  13. <OutputPath>../../Bin/</OutputPath>
  14. <DefineConstants>TRACE2_0;NOT_UNITY;SERVER;</DefineConstants>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  17. <OutputPath>../../Bin/</OutputPath>
  18. <DefineConstants>TRACE2_0;SERVER;NOT_UNITY</DefineConstants>
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <PackageReference Include="NLog" Version="4.7.12" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <ProjectReference Include="..\Hotfix\Robot.Hotfix.csproj" />
  25. <ProjectReference Include="..\Model\Robot.Model.csproj" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <None Update="NLog.config">
  29. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  30. </None>
  31. </ItemGroup>
  32. </Project>