-
Notifications
You must be signed in to change notification settings - Fork 1
/
FluentSerializer.Json.Converter.DefaultJson.csproj
73 lines (66 loc) · 3.25 KB
/
FluentSerializer.Json.Converter.DefaultJson.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
68
69
70
71
72
73
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>net7.0;net6.0;netstandard2.1;netstandard2.0</TargetFrameworks>
<Nullable>enable</Nullable>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<LangVersion Condition="'$(TargetFramework)' == 'net6'">10</LangVersion>
<LangVersion Condition="'$(TargetFramework.TrimEnd(`0123456789.`))' != 'net'">10</LangVersion>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<ApplicationIcon>..\..\docs\logo\NuGetIcon.json.ico</ApplicationIcon>
<PackageIcon>NuGetIcon.json.png</PackageIcon>
<PackageReadmeFile>Readme.NuGet.md</PackageReadmeFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Company>N/A</Company>
<Copyright>Apache-2.0</Copyright>
<PackageProjectUrl>https://github.com/Marvin-Brouwer/FluentSerializer#readme</PackageProjectUrl>
<RepositoryUrl>https://github.com/Marvin-Brouwer/FluentSerializer#readme</RepositoryUrl>
<Version /> <!-- Version will be replaced by release pipeline -->
<PackageReleaseNotes /> <!-- PackageReleaseNotes will be replaced by release pipeline -->
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<RunCodeAnalysis>false</RunCodeAnalysis>
<EnableNETAnalyzers>True</EnableNETAnalyzers>
<AnalysisLevel>latest-recommended</AnalysisLevel>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\docs\logo\NuGetIcon.json.png" Visible="false">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="Readme.NuGet.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<PropertyGroup>
<!-- https://github.com/dependabot/dependabot-core/issues/1618#issuecomment-665863295 -->
<CodeAnalysisVersion>4.7.0</CodeAnalysisVersion>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
<PackageReference Include="Microsoft.CodeAnalysis" Version="$(CodeAnalysisVersion)" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="$(CodeAnalysisVersion)" />
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ReflectionAnalyzers" Version="0.3.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="SonarAnalyzer.CSharp" Version="9.12.0.78982">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FluentSerializer.Core\FluentSerializer.Core.csproj" />
<ProjectReference Include="..\FluentSerializer.Json\FluentSerializer.Json.csproj" />
</ItemGroup>
</Project>