-
Notifications
You must be signed in to change notification settings - Fork 0
/
JsonSerializerContextGenerator.csproj
30 lines (25 loc) · 1.28 KB
/
JsonSerializerContextGenerator.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<IncludeBuildOutput>false</IncludeBuildOutput>
<Description>Source generator that creates JsonSerializerContext classes from any class using attributes or fluent style</Description>
<PackageProjectUrl>https://github.com/musictopia2/JsonSerializerContextGenerator</PackageProjectUrl>
<Version>1.0.5</Version>
</PropertyGroup>
<PropertyGroup>
<IncludeBuildOutput>false</IncludeBuildOutput>
</PropertyGroup>
<ItemGroup>
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AttributesSourceGeneratorHelper" Version="3.0.1" PrivateAssets="all" />
<PackageReference Include="GenerateHelperLibraries" Version="2.0.4" PrivateAssets="all" />
<PackageReference Include="CommonSourceGeneratorsHelpers" Version="2.0.28" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.0.1" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.3" PrivateAssets="all" />
</ItemGroup>
</Project>