|
1 | | -<Project> |
| 1 | +<Project> |
2 | 2 | <PropertyGroup> |
3 | | - <Copyright>Copyright (c) .NET Foundation and Contributors</Copyright> |
| 3 | + <EnableWindowsTargeting>true</EnableWindowsTargeting> |
| 4 | + <WarningsAsErrors>$(WarningsAsErrors);nullable</WarningsAsErrors> |
| 5 | + <LangVersion>preview</LangVersion> |
| 6 | + <Nullable>enable</Nullable> |
| 7 | + <Copyright>Copyright © 2019-$(CompanyName) $([System.DateTime]::Now.ToString(`yyyy`)) ReactiveUI and Contributors</Copyright> |
4 | 8 | <Product>ReactiveUI.Validations ($(TargetFramework))</Product> |
5 | 9 | <PackageLicenseExpression>MIT</PackageLicenseExpression> |
6 | 10 | <PackageProjectUrl>https://github.com/reactiveui/ReactiveUI.Validation/</PackageProjectUrl> |
7 | 11 | <PackageIconUrl>https://github.com/reactiveui/ReactiveUI.Validation/blob/master/media/logo.png?raw=true</PackageIconUrl> |
8 | | - <Authors>.NET Foundation and Contributors</Authors> |
| 12 | + <Authors>ReactiveUI and Contributors</Authors> |
9 | 13 | <Description>Validations library for ReactiveUI.</Description> |
10 | 14 | <Owners>xanaisbettsx;ghuntley</Owners> |
11 | 15 | <PackageTags>reactiveui;validation library;reactive programming;netcore;netstandard;netframework</PackageTags> |
|
24 | 28 | <!-- Optional: Include PDB in the built .nupkg --> |
25 | 29 | <AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> |
26 | 30 | <WarningsAsErrors>CS8600;CS8602;CS8603;CS8604;CS8605;CS8606;CS8607;CS8608;CS8609;CS8610;CS8611;CS8612;CS8613;CS8614;CS8615;CS8616;CS8617;CS8618;CS8619;CS8620;CS8621;CS8622;CS8623;CS8624;CS8625</WarningsAsErrors> |
27 | | - <LangVersion>preview</LangVersion> |
28 | 31 | <EnableNETAnalyzers>True</EnableNETAnalyzers> |
29 | 32 | <AnalysisLevel>latest</AnalysisLevel> |
30 | | - <NoWarn>$(NoWarn);IDE1006;IDE0130</NoWarn> |
| 33 | + <NoWarn>$(NoWarn);IDE1006;IDE0130</NoWarn> |
| 34 | + </PropertyGroup> |
| 35 | + |
| 36 | + <PropertyGroup> |
| 37 | + <NetCorePlatforms>net8.0;net9.0;net10.0;netstandard2.0</NetCorePlatforms> |
| 38 | + <NetWindowsPlatforms>net8.0-windows10.0.19041.0;net9.0-windows10.0.19041.0;net10.0-windows10.0.19041.0</NetWindowsPlatforms> |
| 39 | + <MauiAndroidTargets>net9.0-android;net10.0-android</MauiAndroidTargets> |
| 40 | + <MauiAppleTargets>net9.0-ios;net9.0-tvos;net9.0-macos;net9.0-maccatalyst;net10.0-ios;net10.0-tvos;net10.0-macos;net10.0-maccatalyst</MauiAppleTargets> |
| 41 | + <NetFrameworkPlatforms Condition="$([MSBuild]::IsOSPlatform('Windows'))">net462;net472</NetFrameworkPlatforms> |
| 42 | + <TestTargetFrameworks>net8.0;net9.0;net10.0</TestTargetFrameworks> |
31 | 43 | </PropertyGroup> |
32 | 44 |
|
| 45 | + <PropertyGroup> |
| 46 | + <CreatableMauiTargets Condition="$([MSBuild]::IsOSPlatform('Windows'))">$(MauiAndroidTargets);$(MauiAppleTargets)</CreatableMauiTargets> |
| 47 | + <CreatableMauiTargets Condition="$([MSBuild]::IsOSPlatform('OSX'))">$(MauiAndroidTargets);$(MauiAppleTargets)</CreatableMauiTargets> |
| 48 | + <CreatableMauiTargets Condition="$([MSBuild]::IsOSPlatform('Linux'))">$(MauiAndroidTargets)</CreatableMauiTargets> |
| 49 | + |
| 50 | + <LibraryTargetFrameworks>$(NetCorePlatforms);$(NetWindowsPlatforms);$(CreatableMauiTargets);$(NetFrameworkPlatforms)</LibraryTargetFrameworks> |
| 51 | + </PropertyGroup> |
| 52 | + |
33 | 53 | <ItemGroup> |
34 | 54 | <None Include="$(MSBuildThisFileDirectory)..\media\logo.png" Pack="true" PackagePath="\" /> |
35 | 55 | <None Include="$(MSBuildThisFileDirectory)..\LICENSE" Pack="true" PackagePath="LICENSE" /> |
|
40 | 60 | <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> |
41 | 61 | </ItemGroup> |
42 | 62 | <ItemGroup> |
43 | | - <PackageReference Include="Nerdbank.GitVersioning" Version="3.7.115" PrivateAssets="all" /> |
| 63 | + <PackageReference Include="Nerdbank.GitVersioning" Version="3.8.118" PrivateAssets="all" /> |
44 | 64 | <PackageReference Include="stylecop.analyzers" Version="1.2.0-beta.556" PrivateAssets="all" /> |
45 | | - <PackageReference Include="Roslynator.Analyzers" Version="4.14.0" PrivateAssets="All" /> |
| 65 | + <PackageReference Include="Roslynator.Analyzers" Version="4.14.1" PrivateAssets="All" /> |
46 | 66 | </ItemGroup> |
47 | 67 | <ItemGroup> |
48 | 68 | <AdditionalFiles Include="$(MSBuildThisFileDirectory)stylecop.json" Link="stylecop.json" /> |
|
0 commit comments