ConfigFileManager.csproj 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. <PublishAot>true</PublishAot>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <None Remove="Icon.png" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <PackageReference Include="Prism.DryIoc" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\..\Data\GeneralData\GeneralData.csproj" />
  21. <ProjectReference Include="..\..\Data_ViewModel\GlobalData\GlobalData.csproj" />
  22. <ProjectReference Include="..\..\UICommon\UICommon.csproj" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <Folder Include="Properties\PublishProfiles\" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <Resource Include="Icon.png" />
  29. </ItemGroup>
  30. </Project>