|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + <PropertyGroup> |
| 3 | + <TargetFramework>netstandard2.0</TargetFramework> |
| 4 | + <LangVersion>8.0</LangVersion> |
| 5 | + <Nullable>enable</Nullable> |
| 6 | + <SignAssembly>true</SignAssembly> |
| 7 | + <AssemblyOriginatorKeyFile>release.snk</AssemblyOriginatorKeyFile> |
| 8 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 9 | + <Company>Cysharp</Company> |
| 10 | + <!-- Version is passed from CircleCI --> |
| 11 | + <!--<Version>1</Version>--> |
2 | 12 |
|
3 | | - <PropertyGroup> |
4 | | - <TargetFramework>netstandard2.0</TargetFramework> |
5 | | - <LangVersion>8.0</LangVersion> |
6 | | - <Nullable>enable</Nullable> |
7 | | - <SignAssembly>true</SignAssembly> |
8 | | - <AssemblyOriginatorKeyFile>release.snk</AssemblyOriginatorKeyFile> |
9 | | - <GenerateDocumentationFile>true</GenerateDocumentationFile> |
10 | | - <Company>Cysharp</Company> |
11 | | - <!-- Version is passed from CircleCI --> |
12 | | - <!--<Version>1</Version>--> |
| 13 | + <!-- NuGet --> |
| 14 | + <PackageId>MicroBatchFramework</PackageId> |
| 15 | + <PackageVersion>$(Version)</PackageVersion> |
| 16 | + <Authors>Cysharp</Authors> |
| 17 | + <Copyright>Cysharp</Copyright> |
| 18 | + <Description>Cloud Native Batch Framework.</Description> |
| 19 | + <PackageProjectUrl>https://github.com/Cysharp/MicroBatchFramework</PackageProjectUrl> |
| 20 | + <RepositoryUrl>$(PackageProjectUrl)</RepositoryUrl> |
| 21 | + <RepositoryType>git</RepositoryType> |
| 22 | + <PackageTags>batch</PackageTags> |
| 23 | + </PropertyGroup> |
13 | 24 |
|
14 | | - <!-- NuGet --> |
15 | | - <PackageId>MicroBatchFramework</PackageId> |
16 | | - <PackageVersion>$(Version)</PackageVersion> |
17 | | - <Authors>Cysharp</Authors> |
18 | | - <Copyright>Cysharp</Copyright> |
19 | | - <Description>Cloud Native Batch Framework.</Description> |
20 | | - <PackageProjectUrl>https://github.com/Cysharp/MicroBatchFramework</PackageProjectUrl> |
21 | | - <RepositoryUrl>$(PackageProjectUrl)</RepositoryUrl> |
22 | | - <RepositoryType>git</RepositoryType> |
23 | | - <PackageTags>batch</PackageTags> |
24 | | - </PropertyGroup> |
| 25 | + <PropertyGroup> |
| 26 | + <NoWarn>1701;1702;1591</NoWarn> |
| 27 | + </PropertyGroup> |
25 | 28 |
|
26 | | - <PropertyGroup> |
27 | | - <NoWarn>1701;1702;1591</NoWarn> |
28 | | - </PropertyGroup> |
29 | | - |
30 | | - <ItemGroup> |
31 | | - <PackageReference Include="Microsoft.Extensions.Hosting" Version="3.0.0" /> |
32 | | - <PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.2" /> |
33 | | - <PackageReference Include="Utf8Json" Version="1.3.7" /> |
34 | | - </ItemGroup> |
| 29 | + <ItemGroup> |
| 30 | + <PackageReference Include="Microsoft.Extensions.Hosting" Version="3.1.0" /> |
| 31 | + <PackageReference Include="System.Text.Json" Version="4.7.0" /> |
| 32 | + <PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.3" /> |
| 33 | + </ItemGroup> |
35 | 34 | </Project> |
0 commit comments