24 lines
727 B
XML
24 lines
727 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputType>WinExe</OutputType>
|
||
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<UseWPF>true</UseWPF>
|
||
|
|
<AssemblyName>EngineeringSync.Setup</AssemblyName>
|
||
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||
|
|
<ApplicationIcon>Assets\setup-icon.ico</ApplicationIcon>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.1" />
|
||
|
|
<PackageReference Include="System.ServiceProcess.ServiceController" Version="10.0.0" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<Resource Include="Assets\setup-icon.ico" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|