|
10 | 10 | <FileVersion>$(AppVeyor_Build_Version).0</FileVersion>
|
11 | 11 | <PackageVersion>$(AppVeyor_Build_Version)</PackageVersion>
|
12 | 12 | <Authors>Michael Ganss</Authors>
|
13 |
| - <TargetFrameworks>net461;netstandard2.0;net8.0</TargetFrameworks> |
| 13 | + <TargetFrameworks>net462;netstandard2.0;net8.0</TargetFrameworks> |
14 | 14 | <AssemblyName>HtmlSanitizer</AssemblyName>
|
15 | 15 | <AssemblyOriginatorKeyFile>HtmlSanitizer.snk</AssemblyOriginatorKeyFile>
|
16 | 16 | <SignAssembly>true</SignAssembly>
|
|
19 | 19 | <PackageTags>xss;anti;antixss;html;security</PackageTags>
|
20 | 20 | <PackageProjectUrl>https://github.com/mganss/HtmlSanitizer</PackageProjectUrl>
|
21 | 21 | <PackageLicenseExpression>MIT</PackageLicenseExpression>
|
22 |
| - <PackageReadmeFile>README.md</PackageReadmeFile> |
23 |
| - <RepositoryType>git</RepositoryType> |
| 22 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 23 | + <RepositoryType>git</RepositoryType> |
24 | 24 | <RepositoryUrl>git://github.com/mganss/HtmlSanitizer</RepositoryUrl>
|
25 | 25 | <RootNamespace>Ganss.Xss</RootNamespace>
|
26 | 26 | <GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
32 | 32 | <LangVersion>preview</LangVersion>
|
33 | 33 | <Nullable>enable</Nullable>
|
34 | 34 | <WarningsAsErrors>nullable</WarningsAsErrors>
|
| 35 | + <NoWarn>$(NoWarn);IDE0130;SYSLIB1045</NoWarn> |
35 | 36 | </PropertyGroup>
|
36 | 37 |
|
37 | 38 | <PropertyGroup Condition="'$(CI)' == 'True'">
|
|
42 | 43 | <PackageReference Include="AngleSharp" Version="[0.17.1]" />
|
43 | 44 | <PackageReference Include="AngleSharp.Css" Version="[0.17.0]" />
|
44 | 45 | <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
|
| 46 | + <PackageReference Include="System.ValueTuple" Version="4.6.1" /> |
45 | 47 | </ItemGroup>
|
46 | 48 |
|
47 |
| - <ItemGroup Condition=" '$(TargetFramework)' == 'net461'"> |
| 49 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net462'"> |
48 | 50 | <PackageReference Include="System.Collections.Immutable" Version="9.0.1" />
|
49 | 51 | </ItemGroup>
|
50 | 52 | <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0'">
|
|
0 commit comments