Robot.App.csproj 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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>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. <ItemGroup>
  24. <None Include="..\..\Server\App\NLog.config">
  25. <Link>NLog.config</Link>
  26. </None>
  27. </ItemGroup>
  28. <ItemGroup>
  29. <Content Include="..\..\Server\App\NLog.xsd">
  30. <Link>NLog.xsd</Link>
  31. </Content>
  32. </ItemGroup>
  33. </Project>