aboutsummaryrefslogtreecommitdiff
path: root/fuzz/Jellyfin.Server.Fuzz/Jellyfin.Server.Fuzz.csproj
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2021-06-08 22:22:32 +0200
committerBond_009 <bond.009@outlook.com>2021-06-08 22:22:32 +0200
commitf7392394fdcf882c97199d35a65647f201f3129e (patch)
tree4fb512c4b5fc6bffa31f1e94914bad37661c8966 /fuzz/Jellyfin.Server.Fuzz/Jellyfin.Server.Fuzz.csproj
parentb986cb57b7a73236f5a3a1ed22ee8233bd0c75a8 (diff)
Add fuzzing infra
Diffstat (limited to 'fuzz/Jellyfin.Server.Fuzz/Jellyfin.Server.Fuzz.csproj')
-rw-r--r--fuzz/Jellyfin.Server.Fuzz/Jellyfin.Server.Fuzz.csproj22
1 files changed, 22 insertions, 0 deletions
diff --git a/fuzz/Jellyfin.Server.Fuzz/Jellyfin.Server.Fuzz.csproj b/fuzz/Jellyfin.Server.Fuzz/Jellyfin.Server.Fuzz.csproj
new file mode 100644
index 000000000..6fcfbae0e
--- /dev/null
+++ b/fuzz/Jellyfin.Server.Fuzz/Jellyfin.Server.Fuzz.csproj
@@ -0,0 +1,22 @@
+<Project Sdk="Microsoft.NET.Sdk.Web">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>net5.0</TargetFramework>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Reference Include="Jellyfin.Server">
+ <HintPath>jellyfin.dll</HintPath>
+ </Reference>
+ </ItemGroup>
+
+ <ItemGroup>
+ <ProjectReference Include="../../MediaBrowser.Common/MediaBrowser.Common.csproj" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <PackageReference Include="SharpFuzz" Version="1.6.2" />
+ </ItemGroup>
+
+</Project>