anshdadhich commited on
Commit
519d15e
·
verified ·
1 Parent(s): 4910401

Upload FastSeekWpf/FastSeekWpf.csproj

Browse files
Files changed (1) hide show
  1. FastSeekWpf/FastSeekWpf.csproj +19 -0
FastSeekWpf/FastSeekWpf.csproj ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <Project Sdk="Microsoft.NET.Sdk">
2
+
3
+ <PropertyGroup>
4
+ <OutputType>WinExe</OutputType>
5
+ <TargetFramework>net8.0-windows</TargetFramework>
6
+ <Nullable>enable</Nullable>
7
+ <ImplicitUsings>disable</ImplicitUsings>
8
+ <UseWPF>true</UseWPF>
9
+ <ApplicationManifest>app.manifest</ApplicationManifest>
10
+ <PublishSingleFile>true</PublishSingleFile>
11
+ <SelfContained>false</SelfContained>
12
+ <RuntimeIdentifier>win-x64</RuntimeIdentifier>
13
+ </PropertyGroup>
14
+
15
+ <ItemGroup>
16
+ <PackageReference Include="K4os.Compression.LZ4.Streams" Version="1.3.8" />
17
+ </ItemGroup>
18
+
19
+ </Project>