-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTensionDev.UUID.Serialization.SystemTextJson.csproj
More file actions
53 lines (47 loc) · 2.39 KB
/
TensionDev.UUID.Serialization.SystemTextJson.csproj
File metadata and controls
53 lines (47 loc) · 2.39 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net461;netstandard2.0;net6.0;net8.0;net10.0</TargetFrameworks>
<AssemblyName>TensionDev.UUID.Serialization.SystemTextJson</AssemblyName>
<RootNamespace>TensionDev.UUID.Serialization.SystemTextJson</RootNamespace>
<NuGetAuditMode>all</NuGetAuditMode>
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageId>TensionDev.UUID.Serialization.SystemTextJson</PackageId>
<Version>2.1.0</Version>
<Authors>TensionDev amsga</Authors>
<Company>TensionDev</Company>
<Product>TensionDev.UUID.Serialization.SystemTextJson</Product>
<Description>TensionDev.UUID.Serialization.SystemTextJson is a .NET library that serializes TensionDev.Uuid objects into JSON.</Description>
<Copyright>Copyright (c) TensionDev 2026</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/TensionDev/UUID.Serialization.SystemTextJson</PackageProjectUrl>
<RepositoryUrl>https://github.com/TensionDev/UUID.Serialization.SystemTextJson</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>UUID GUID JSON</PackageTags>
<PackageReleaseNotes>Initial Release.</PackageReleaseNotes>
<NeutralLanguage>en-SG</NeutralLanguage>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="TensionDev.UUID" Version="2.1.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net461'">
<PackageReference Include="System.Text.Encodings.Web" Version="10.0.5" />
<PackageReference Include="System.Text.Json" Version="4.7.2" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Text.Encodings.Web" Version="10.0.5" />
<PackageReference Include="System.Text.Json" Version="4.7.2" />
</ItemGroup>
</Project>