Robot.App.csproj 897 B

12345678910111213141516171819202122232425262728
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net5.0</TargetFramework>
  5. <RootNamespace>ET</RootNamespace>
  6. </PropertyGroup>
  7. <PropertyGroup>
  8. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  9. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  10. </PropertyGroup>
  11. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  12. <OutputPath>../../Bin/</OutputPath>
  13. <DefineConstants>TRACECOREAPP;NOT_UNITY</DefineConstants>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  16. <OutputPath>../../Bin/</OutputPath>
  17. <DefineConstants>TRACECOREAPP;NOT_UNITY</DefineConstants>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\Model\Robot.Model.csproj" />
  21. </ItemGroup>
  22. </Project>