UserTool.csproj 640 B

12345678910111213141516171819
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <OutputPath>$(SolutionDir)Binary\UserTool</OutputPath>
  6. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  7. <ImplicitUsings>enable</ImplicitUsings>
  8. <Nullable>enable</Nullable>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <ProjectReference Include="..\..\Configs\CofigOperator\ConfigOperator.csproj" />
  12. <ProjectReference Include="..\..\DataBase\ORM\ORM.csproj" />
  13. <ProjectReference Include="..\..\DataBase\SqlSugarORM\SqlSugarORM.csproj" />
  14. </ItemGroup>
  15. </Project>