-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLoadRetimer.csproj
More file actions
36 lines (29 loc) · 830 Bytes
/
LoadRetimer.csproj
File metadata and controls
36 lines (29 loc) · 830 Bytes
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
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<None Remove="Icon.ico" />
<None Remove="Shader\brightness.ps" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FFME.Windows" Version="4.4.350" />
</ItemGroup>
<ItemGroup>
<Resource Include="Icon.ico" />
<Resource Include="Shader\brightness.ps" />
</ItemGroup>
<ItemGroup>
<Compile Update="FinalRetimeWindow.xaml.cs">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Page Update="FinalRetimeWindow.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
<SubType>Designer</SubType>
</Page>
</ItemGroup>
</Project>