-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathFizzler.csproj
67 lines (59 loc) · 2.95 KB
/
Fizzler.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard1.0;netstandard2.0</TargetFrameworks>
<LangVersion>12</LangVersion>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Fizzler.snk</AssemblyOriginatorKeyFile>
<VersionPrefix>1.4.0</VersionPrefix>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<Authors>Atif Aziz, Colin Ramsay</Authors>
<Description>Fizzler is a W3C Selectors parser and generic selector framework for document hierarchies.</Description>
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/atifaziz/Fizzler</PackageProjectUrl>
<RepositoryUrl>https://github.com/atifaziz/Fizzler</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>selectors w3c</PackageTags>
<PackageIconUrl></PackageIconUrl>
<PackageOutputPath>..\dist</PackageOutputPath>
<Copyright>Copyright © 2009 Atif Aziz, Colin Ramsay. All rights reserved. Portions Copyright © 2008 Novell, Inc.</Copyright>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\bin\Release\</OutputPath>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)'=='netstandard1.0'">
<PackageReference Include="System.Diagnostics.Contracts" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<None Include="..\COPYING.txt" Pack="true" PackagePath="COPYING.txt" />
<None Include="..\README.md" Pack="true" PackagePath="$(PackageReadmeFile)" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.2.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" Version="3.3.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="PolySharp" Version="1.14.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<PropertyGroup>
<PolySharpIncludeGeneratedTypes>
System.Index;
System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute;
System.Diagnostics.CodeAnalysis.NotNullWhenAttribute;
</PolySharpIncludeGeneratedTypes>
</PropertyGroup>
</Project>