49 lines
1.7 KiB
XML
49 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<EnableWindowsTargeting>true</EnableWindowsTargeting>
|
|
<UseWPF>true</UseWPF>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ApplicationIcon>视频.ico</ApplicationIcon>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FFMpegCore" Version="5.1.0" />
|
|
<PackageReference Include="log4net" Version="3.0.2" />
|
|
<PackageReference Include="MaterialDesignXaml.DialogsHelper" Version="1.0.4" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.1" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="System.IO.Pipelines" Version="9.0.0" />
|
|
<PackageReference Include="System.Text.Encodings.Web" Version="9.0.0" />
|
|
<PackageReference Include="System.Text.Json" Version="9.0.0" />
|
|
<PackageReference Include="WPFDevelopers" Version="0.0.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<AdditionalFiles Update="app.manifest">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</AdditionalFiles>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ApplicationDefinition Update="App.xaml">
|
|
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
</ApplicationDefinition>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="App.config">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="log4net.config">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|