-
Notifications
You must be signed in to change notification settings - Fork 0
/
FSPreview.csproj
88 lines (72 loc) · 2.85 KB
/
FSPreview.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0-windows</TargetFrameworks>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PlatformTarget>x64</PlatformTarget>
<OutputType>Library</OutputType>
<UseWPF>True</UseWPF>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
<ItemGroup>
<None Remove="FFmpeg\avcodec-58.dll" />
<None Remove="FFmpeg\avdevice-58.dll" />
<None Remove="FFmpeg\avformat-58.dll" />
<None Remove="FFmpeg\avutil-56.dll" />
<None Remove="FFmpeg\postproc-55.dll" />
<None Remove="FFmpeg\swresample-3.dll" />
<None Remove="FFmpeg\swscale-5.dll" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="FFmpeg\avcodec-58.dll">
<CustomToolNamespace>FFmpeg</CustomToolNamespace>
</EmbeddedResource>
<EmbeddedResource Include="FFmpeg\avdevice-58.dll">
<CustomToolNamespace>FFmpeg</CustomToolNamespace>
</EmbeddedResource>
<EmbeddedResource Include="FFmpeg\avformat-58.dll">
<CustomToolNamespace>FFmpeg</CustomToolNamespace>
</EmbeddedResource>
<EmbeddedResource Include="FFmpeg\avutil-56.dll">
<CustomToolNamespace>FFmpeg</CustomToolNamespace>
</EmbeddedResource>
<EmbeddedResource Include="FFmpeg\postproc-55.dll">
<CustomToolNamespace>FFmpeg</CustomToolNamespace>
</EmbeddedResource>
<EmbeddedResource Include="FFmpeg\swresample-3.dll">
<CustomToolNamespace>FFmpeg</CustomToolNamespace>
</EmbeddedResource>
<EmbeddedResource Include="FFmpeg\swscale-5.dll">
<CustomToolNamespace>FFmpeg</CustomToolNamespace>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<!-- Reference all of Windows Forms -->
<FrameworkReference Include="Microsoft.WindowsDesktop.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FFmpeg.AutoGen" Version="4.4.1.1" />
<PackageReference Include="Vortice.D3DCompiler" Version="2.1.1-beta4" />
<PackageReference Include="Vortice.Direct3D11" Version="2.1.1-beta4" />
<PackageReference Include="Vortice.Mathematics" Version="1.3.24" />
<PackageReference Include="Vortice.MediaFoundation" Version="2.1.1-beta4" />
<PackageReference Include="Vortice.XAudio2" Version="2.1.1-beta4" />
<PackageReference Include="VST.NET2-Plugin" Version="2.1.0" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>