Initial commit: Add ShadowStream media application with file scanning and classification

This commit is contained in:
unknown
2025-05-23 20:17:46 +02:00
commit 323fc9e120
955 changed files with 25791 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<AssemblyName>ShadowStream</AssemblyName>
<RootNamespace>ShadowStream</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\file finder test\file finder test.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="LibVLCSharp" Version="3.9.3" />
<PackageReference Include="LibVLCSharp.WPF" Version="3.9.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="VideoLAN.LibVLC.Windows" Version="3.0.21" />
</ItemGroup>
</Project>