mirror of
https://github.com/2dust/v2rayN.git
synced 2026-04-16 12:35:46 +00:00
38 lines
No EOL
1.3 KiB
XML
38 lines
No EOL
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows10.0.17763</TargetFramework>
|
|
<GenerateSatelliteAssembliesForCore>true</GenerateSatelliteAssembliesForCore>
|
|
<UseWPF>true</UseWPF>
|
|
<ApplicationIcon>Resources\v2rayN.ico</ApplicationIcon>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MaterialDesignThemes" />
|
|
<PackageReference Include="H.NotifyIcon.Wpf" />
|
|
<PackageReference Include="ReactiveUI.Fody">
|
|
<TreatAsUsed>true</TreatAsUsed>
|
|
</PackageReference>
|
|
<PackageReference Include="ReactiveUI.WPF" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<AdditionalFiles Include="app.manifest" />
|
|
<EmbeddedResource Include="Resources\v2rayN.ico">
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
</EmbeddedResource>
|
|
<Resource Include="Resources\NotifyIcon1.ico" />
|
|
<Resource Include="Resources\NotifyIcon2.ico" />
|
|
<Resource Include="Resources\NotifyIcon3.ico" />
|
|
<Resource Include="Resources\NotifyIcon4.ico" />
|
|
<Resource Include="Resources\v2rayN.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ServiceLib\ServiceLib.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |