Robot.App.csproj 940 B

1234567891011121314151617181920212223242526272829
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net5.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>TRACECOREAPP;NOT_UNITY</DefineConstants>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  17. <OutputPath>../../Bin/</OutputPath>
  18. <DefineConstants>TRACECOREAPP;NOT_UNITY</DefineConstants>
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <ProjectReference Include="..\Model\Robot.Model.csproj" />
  22. </ItemGroup>
  23. </Project>