Upload FastSeekWpf/FastSeekWpf.csproj
Browse files
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>
|