-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathSTS-Bcut.csproj
42 lines (36 loc) · 1.39 KB
/
STS-Bcut.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.17763.0</TargetFramework>
<RootNamespace>STS_Bcut</RootNamespace>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<AssemblyVersion>1.0.5.0</AssemblyVersion>
<ApplicationIcon>res\BCutIcon.ico</ApplicationIcon>
<PackageIcon>BCutIcon.png</PackageIcon>
<RepositoryUrl>https://github.com/Forgot-Dream/STS-Bcut</RepositoryUrl>
<FileVersion>1.0.5.0</FileVersion>
<SupportedOSPlatformVersion>10.0.17763.0</SupportedOSPlatformVersion>
</PropertyGroup>
<ItemGroup>
<Content Include="res\BCutIcon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FFMpegCore" Version="5.1.0" />
<PackageReference Include="MaterialDesignThemes" Version="5.1.0" />
<PackageReference Include="Microsoft-WindowsAPICodePack-Shell" Version="1.1.5" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Prism.Core" Version="8.1.97" />
<PackageReference Include="Prism.DryIoc" Version="8.1.97" />
<PackageReference Include="Prism.Wpf" Version="8.1.97" />
</ItemGroup>
<ItemGroup>
<Resource Include="res\BCutIcon.png" />
</ItemGroup>
<ItemGroup>
<None Update="res\BCutIcon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>