ET.App.csproj 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <RootNamespace>ET</RootNamespace>
  6. <LangVersion>12</LangVersion>
  7. <AssemblyName>ET.App</AssemblyName>
  8. </PropertyGroup>
  9. <PropertyGroup>
  10. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  11. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  14. <DefineConstants>DOTNET</DefineConstants>
  15. <OutputPath>$(SolutionDir)Bin</OutputPath>
  16. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  17. <Optimize>true</Optimize>
  18. </PropertyGroup>
  19. <PropertyGroup>
  20. <PublishTrimmed>false</PublishTrimmed>
  21. </PropertyGroup>
  22. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  23. <DefineConstants>DOTNET</DefineConstants>
  24. <OutputPath>$(SolutionDir)Bin</OutputPath>
  25. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  26. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  27. </PropertyGroup>
  28. <ItemGroup>
  29. <ProjectReference Include="..\..\..\cn.etetet.statesync\DotNet~\Model\ET.Model.csproj" />
  30. <ProjectReference Include="..\Loader\ET.Loader.csproj" />
  31. </ItemGroup>
  32. </Project>