PRSLicensing.csproj 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net6.0-windows</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <UseWPF>true</UseWPF>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <None Remove="Resources\splash-small.png" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <PackageReference Include="PropertyChanged.Fody" Version="3.4.1" />
  13. <PackageReference Include="System.ServiceProcess.ServiceController" Version="6.0.0" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\..\inabox\InABox.Client.RPC\InABox.Client.RPC.csproj" />
  17. <ProjectReference Include="..\..\inabox\inabox.wpf\InABox.Wpf.csproj" />
  18. <ProjectReference Include="..\prs.services\PRSServices.csproj" />
  19. <ProjectReference Include="..\prs.shared\PRS.Shared.csproj" />
  20. </ItemGroup>
  21. <Import Project="..\prs.stores\PRSStores.projitems" Label="Shared" />
  22. <ItemGroup>
  23. <Resource Include="Resources\splash-small.png">
  24. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  25. </Resource>
  26. </ItemGroup>
  27. <ItemGroup>
  28. <Compile Update="Engine\PRSLicensingService.cs" />
  29. <Compile Update="Resources.Designer.cs">
  30. <DependentUpon>Resources.resx</DependentUpon>
  31. <DesignTime>True</DesignTime>
  32. <AutoGen>True</AutoGen>
  33. </Compile>
  34. </ItemGroup>
  35. <ItemGroup>
  36. <EmbeddedResource Update="Resources.resx">
  37. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  38. <Generator>ResXFileCodeGenerator</Generator>
  39. </EmbeddedResource>
  40. </ItemGroup>
  41. </Project>