ToMcFile.csproj 721 B

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <OutputPath>$(SolutionDir)Binary\Tools\ToPMCScript</OutputPath>
  6. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  7. <ImplicitUsings>enable</ImplicitUsings>
  8. <Nullable>enable</Nullable>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="NPOI" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ProjectReference Include="..\..\Configs\CofigOperator\ConfigOperator.csproj" />
  15. <ProjectReference Include="..\..\ModelData\TemperatureConfigFile\TemperatureConfigFile.csproj" />
  16. <ProjectReference Include="..\..\Universal\Universal.csproj" />
  17. </ItemGroup>
  18. </Project>