|
1 | 1 | <Project> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <VersionPrefix>3.5.1</VersionPrefix> |
5 | | - <LangVersion>11.0</LangVersion> |
| 4 | + <VersionPrefix>3.5.2</VersionPrefix> |
| 5 | + <NoWarn>$(NoWarn);1591;1998;NU1507;NU5105</NoWarn> |
| 6 | + <GitHubOrganization>Faithlife</GitHubOrganization> |
| 7 | + <RepositoryName>Parsing</RepositoryName> |
| 8 | + </PropertyGroup> |
| 9 | + |
| 10 | + <!-- DO NOT EDIT: dotnet-common-props convention --> |
| 11 | + <PropertyGroup> |
| 12 | + <LangVersion>14.0</LangVersion> |
6 | 13 | <Nullable>enable</Nullable> |
7 | 14 | <ImplicitUsings>enable</ImplicitUsings> |
8 | 15 | <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
9 | | - <NoWarn>$(NoWarn);1591;1998;NU5105</NoWarn> |
| 16 | + <NeutralLanguage>en-US</NeutralLanguage> |
10 | 17 | <DebugType>embedded</DebugType> |
11 | | - <GitHubOrganization>Faithlife</GitHubOrganization> |
12 | | - <RepositoryName>Parsing</RepositoryName> |
13 | 18 | <PackageLicenseExpression>MIT</PackageLicenseExpression> |
14 | 19 | <PackageProjectUrl>https://github.com/$(GitHubOrganization)/$(RepositoryName)</PackageProjectUrl> |
15 | 20 | <PackageReleaseNotes>https://github.com/$(GitHubOrganization)/$(RepositoryName)/blob/master/ReleaseNotes.md</PackageReleaseNotes> |
16 | 21 | <RepositoryUrl>https://github.com/$(GitHubOrganization)/$(RepositoryName).git</RepositoryUrl> |
17 | 22 | <Authors>Faithlife</Authors> |
18 | 23 | <Copyright>Copyright $(Authors)</Copyright> |
19 | | - <GenerateDocumentationFile>true</GenerateDocumentationFile> |
20 | | - <EmbedUntrackedSources>true</EmbedUntrackedSources> |
21 | 24 | <EnableNETAnalyzers>true</EnableNETAnalyzers> |
22 | | - <AnalysisMode>AllEnabledByDefault</AnalysisMode> |
| 25 | + <AnalysisLevel>latest-all</AnalysisLevel> |
23 | 26 | <EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> |
| 27 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
24 | 28 | <IsPackable>false</IsPackable> |
25 | 29 | <IsTestProject>false</IsTestProject> |
| 30 | + <SelfContained>false</SelfContained> |
| 31 | + <UseArtifactsOutput>true</UseArtifactsOutput> |
| 32 | + <EnableStrictModeForCompatibleFrameworksInPackageValidation>true</EnableStrictModeForCompatibleFrameworksInPackageValidation> |
| 33 | + <EnableStrictModeForCompatibleTfms>true</EnableStrictModeForCompatibleTfms> |
| 34 | + <DisablePackageBaselineValidation Condition=" $(PackageValidationBaselineVersion) == $(VersionPrefix) or $(PackageValidationBaselineVersion) == '0.0.0' ">true</DisablePackageBaselineValidation> |
| 35 | + <NuGetAudit>true</NuGetAudit> |
| 36 | + <NuGetAuditMode>all</NuGetAuditMode> |
| 37 | + <NuGetAuditLevel>low</NuGetAuditLevel> |
26 | 38 | </PropertyGroup> |
27 | | - |
28 | | - <PropertyGroup Condition=" '$(BuildNumber)' != '' "> |
29 | | - <AssemblyVersion>$(VersionPrefix).$(BuildNumber)</AssemblyVersion> |
30 | | - <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
31 | | - </PropertyGroup> |
32 | | - |
33 | | - <ItemGroup> |
34 | | - <PackageReference Include="Faithlife.Analyzers" Version="1.4.0" PrivateAssets="All" IncludeAssets="runtime; build; native; contentfiles; analyzers" /> |
35 | | - <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" /> |
36 | | - <PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435" PrivateAssets="All" IncludeAssets="runtime; build; native; contentfiles; analyzers" /> |
37 | | - </ItemGroup> |
| 39 | + <!-- END DO NOT EDIT --> |
38 | 40 |
|
39 | 41 | </Project> |
0 commit comments