UniversalControls.csproj 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-windows</TargetFramework>
  4. <OutputPath>$(SolutionDir)Binary\Modules</OutputPath>
  5. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  6. <Nullable>enable</Nullable>
  7. <UseWPF>true</UseWPF>
  8. <ImplicitUsings>enable</ImplicitUsings>
  9. <TargetFramework>net8.0-windows</TargetFramework>
  10. <OutputPath>$(SolutionDir)Binary\Modules</OutputPath>
  11. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  12. <Nullable>enable</Nullable>
  13. <UseWPF>true</UseWPF>
  14. <Platforms>AnyCPU;x64</Platforms>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <Compile Remove="Dialogs\**" />
  18. <EmbeddedResource Remove="Dialogs\**" />
  19. <None Remove="Dialogs\**" />
  20. <Page Remove="Dialogs\**" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <PackageReference Include="CommunityToolkit.Mvvm" />
  24. <PackageReference Include="Prism.DryIoc" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <ProjectReference Include="..\..\Data\DataVM\DataVM.csproj" />
  28. <ProjectReference Include="..\..\UICommon\UICommon.csproj" />
  29. <ProjectReference Include="..\ModuleBase\ModuleBase.csproj" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <Resource Include="Resources\BoatCore.png" />
  33. <Resource Include="Resources\BoatShell.png" />
  34. <Resource Include="Resources\Pos1.png" />
  35. <Resource Include="Resources\Pos2.png" />
  36. <Resource Include="Resources\Pos3.png" />
  37. </ItemGroup>
  38. <ItemGroup>
  39. <Compile Update="Controls\Header_Content.xaml.cs">
  40. <SubType>Code</SubType>
  41. </Compile>
  42. <Compile Update="Controls\SignalLight.xaml.cs">
  43. <SubType>Code</SubType>
  44. </Compile>
  45. </ItemGroup>
  46. </Project>