📦 techouse / qs-net

📄 QsNet.csproj · 59 lines
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<Project Sdk="Microsoft.NET.Sdk">
    <PropertyGroup>
        <TargetFrameworks>net8.0;netstandard2.0</TargetFrameworks>
        <Nullable>enable</Nullable>
        <LangVersion>latest</LangVersion>
        <GenerateDocumentationFile>true</GenerateDocumentationFile>
        <PackageId>QsNet</PackageId>
        <Version>1.1.2</Version>
        <Authors>Klemen Tusar</Authors>
        <PackageTags>
            querystring;query-string;query;parameters;url;uri;http;
            parser;encoder;decoder;encoding;decoding;
            form-urlencoded;percent-encoding;nested;arrays;brackets;
            qs;aspnetcore
        </PackageTags>
        <Description>A query string encoding and decoding library for C#/.NET. Ported from qs for JavaScript.</Description>
        <PackageProjectUrl>https://techouse.github.io/qs-net/</PackageProjectUrl>
        <RepositoryUrl>https://github.com/techouse/qs-net</RepositoryUrl>
        <RepositoryType>git</RepositoryType>
        <PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
        <PackageReadmeFile>README.md</PackageReadmeFile>
        <PublishRepositoryUrl>true</PublishRepositoryUrl>
        <IncludeSymbols>true</IncludeSymbols>
        <SymbolPackageFormat>snupkg</SymbolPackageFormat>
        <EmbedUntrackedSources>true</EmbedUntrackedSources>

        <EnablePackageValidation>true</EnablePackageValidation>
        <EnableNETAnalyzers>true</EnableNETAnalyzers>
        <AnalysisLevel>latest-recommended</AnalysisLevel>

        <Deterministic>true</Deterministic>
        <ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
        <TreatWarningsAsErrors Condition="'$(CI)' == 'true'">true</TreatWarningsAsErrors>

        <PackageReleaseNotes>See CHANGELOG: https://github.com/techouse/qs-net/releases</PackageReleaseNotes>
        <Title>QsNet - Query-string encoding/decoding for .NET</Title>
        <PackageIcon>logo.png</PackageIcon>
    </PropertyGroup>

    <PropertyGroup Condition="'$(TargetFramework)' == 'net8.0'">
        <ImplicitUsings>enable</ImplicitUsings>
    </PropertyGroup>
    <!-- Optionally: for other TFMs where supported in future -->
    <!-- <PropertyGroup Condition="'$(TargetFramework)' == 'netX.Y'"> -->
    <!--   <ImplicitUsings>enable</ImplicitUsings> -->
    <!-- </PropertyGroup> -->
    <ItemGroup>
        <None Include="..\README.md" Pack="true" PackagePath="\"/>
        <None Include="..\LICENSE" Pack="true" PackagePath="\"/>
        <None Include="..\logo.png" Pack="true" PackagePath="\"/>
        <InternalsVisibleTo Include="QsNet.Tests"/>
        <InternalsVisibleTo Include="QsNet.Benchmarks"/>
    </ItemGroup>

    <ItemGroup>
        <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
    </ItemGroup>
</Project>