/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Fuzzing/AspNetCoreFuzzing/AspNetCoreFuzzing.csproj
38 строк
1 KB
Brennan
Add fuzzing infrastructure for ASP.NET Core (#67022)
09 июн 2026, 23:53
Не верифицирован
09 июн 2026, 23:53
01c7cc4
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework> <SelfContained>true</SelfContained> <RuntimeIdentifier Condition="'$(RuntimeIdentifier)' == ''">win-x64</RuntimeIdentifier> <UseAppHost>true</UseAppHost> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <!-- Fuzzing infrastructure uses System.Exception intentionally for lightweight assertions. --> <NoWarn>$(NoWarn);CA2201</NoWarn> <!-- This project has no public API surface to track. --> <AddPublicApiAnalyzers>false</AddPublicApiAnalyzers> </PropertyGroup> <ItemGroup> <Reference Include="SharpFuzz" /> </ItemGroup> <ItemGroup> <Reference Include="Microsoft.Net.Http.Headers" /> <Reference Include="Microsoft.AspNetCore.WebUtilities" /> <Reference Include="Microsoft.AspNetCore.Http.Abstractions" /> <Reference Include="Microsoft.AspNetCore.Http.Extensions" /> <Reference Include="Microsoft.AspNetCore.Http.Features" /> <Reference Include="Microsoft.AspNetCore.Components.Endpoints" /> <Reference Include="Microsoft.AspNetCore.Server.Kestrel.Core" /> </ItemGroup> <ItemGroup> <None Include="Dictionaries\*"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> </ItemGroup> </Project>