diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2021-06-14 19:30:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-14 19:30:05 +0200 |
| commit | cd36b8067fcf80c5ebb47bdd9bea0047d1fe3aef (patch) | |
| tree | b6bd280adfa34931bb47a6d10eb9ddd0bca3b3e3 /fuzz/Emby.Server.Implementations.Fuzz/Emby.Server.Implementations.Fuzz.csproj | |
| parent | aaa9cc604f5cd3a2869259a9b0c404d0330195fd (diff) | |
| parent | f7392394fdcf882c97199d35a65647f201f3129e (diff) | |
Merge pull request #5988 from Bond-009/fuzz
Add fuzzing infrastructure
Diffstat (limited to 'fuzz/Emby.Server.Implementations.Fuzz/Emby.Server.Implementations.Fuzz.csproj')
| -rw-r--r-- | fuzz/Emby.Server.Implementations.Fuzz/Emby.Server.Implementations.Fuzz.csproj | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/fuzz/Emby.Server.Implementations.Fuzz/Emby.Server.Implementations.Fuzz.csproj b/fuzz/Emby.Server.Implementations.Fuzz/Emby.Server.Implementations.Fuzz.csproj new file mode 100644 index 000000000..791cb140d --- /dev/null +++ b/fuzz/Emby.Server.Implementations.Fuzz/Emby.Server.Implementations.Fuzz.csproj @@ -0,0 +1,18 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <OutputType>Exe</OutputType> + <TargetFramework>net5.0</TargetFramework> + </PropertyGroup> + + <ItemGroup> + <Reference Include="Emby.Server.Implementations"> + <HintPath>Emby.Server.Implementations.dll</HintPath> + </Reference> + </ItemGroup> + + <ItemGroup> + <PackageReference Include="SharpFuzz" Version="1.6.2" /> + </ItemGroup> + +</Project> |
