ConfigFileManager.csproj 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Library</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <OutputPath>$(SolutionDir)Binary\Modules</OutputPath>
  6. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  7. <Nullable>enable</Nullable>
  8. <ImplicitUsings>enable</ImplicitUsings>
  9. <UseWPF>true</UseWPF>
  10. <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
  11. <OutputType>Library</OutputType>
  12. <TargetFramework>net8.0-windows</TargetFramework>
  13. <OutputPath>$(SolutionDir)Binary\Modules</OutputPath>
  14. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  15. <Nullable>enable</Nullable>
  16. <ImplicitUsings>enable</ImplicitUsings>
  17. <UseWPF>true</UseWPF>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <PackageReference Include="Prism.DryIoc" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <ProjectReference Include="..\..\Data\Device\Device.csproj" />
  24. <ProjectReference Include="..\..\GlobalData\GlobalData\GlobalData.csproj" />
  25. <ProjectReference Include="..\..\UICommon\UICommon.csproj" />
  26. </ItemGroup>
  27. </Project>