File tree Expand file tree Collapse file tree 5 files changed +9
-6
lines changed
src/JsonApiDotNetCore.Annotations
test/SourceGeneratorTests Expand file tree Collapse file tree 5 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 4141 <PropertyGroup>
4242 <NoWarn>$(NoWarn);NU5104;NU1608</NoWarn>
4343 <SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
44+ <NuGetAuditMode>direct</NuGetAuditMode>
4445 </PropertyGroup>
4546
4647 <PropertyGroup Condition="$(MSBuildProjectName.EndsWith('Tests'))">
Original file line number Diff line number Diff line change @@ -595,6 +595,7 @@ JsonApiDotNetCore.ArgumentGuard.NotNull($EXPR$);</s:String>
595595 <s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpKeepExistingMigration/@EntryIndexedValue">True</s:Boolean>
596596 <s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpPlaceEmbeddedOnSameLineMigration/@EntryIndexedValue">True</s:Boolean>
597597 <s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpUseContinuousIndentInsideBracesMigration/@EntryIndexedValue">True</s:Boolean>
598+ <s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002EMemberReordering_002EMigrations_002ECSharpFileLayoutPatternRemoveIsAttributeUpgrade/@EntryIndexedValue">True</s:Boolean>
598599 <s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EAlwaysTreatStructAsNotReorderableMigration/@EntryIndexedValue">True</s:Boolean>
599600 <s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateBlankLinesAroundFieldToBlankLinesAroundProperty/@EntryIndexedValue">True</s:Boolean>
600601 <s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EPredefinedNamingRulesToUserRulesUpgrade/@EntryIndexedValue">True</s:Boolean>
Original file line number Diff line number Diff line change 2121
2222 <PropertyGroup Condition="'$(TargetFramework)' == 'net9.0'">
2323 <!-- Published dependencies (only update on major version change) -->
24- <EntityFrameworkCoreFrozenVersion>9.0.0-preview.3.24172.4 </EntityFrameworkCoreFrozenVersion>
24+ <EntityFrameworkCoreFrozenVersion>9.0.0-rc.1.24451.1 </EntityFrameworkCoreFrozenVersion>
2525
2626 <!-- Non-published dependencies (these are safe to update, won't cause a breaking change) -->
2727 <AspNetCoreVersion>9.0.*-*</AspNetCoreVersion>
2828 <EntityFrameworkCoreVersion>$(EntityFrameworkCoreFrozenVersion)</EntityFrameworkCoreVersion>
29- <EntityFrameworkCorePostgreSQLVersion>9.0.0-preview.3 </EntityFrameworkCorePostgreSQLVersion>
29+ <EntityFrameworkCorePostgreSQLVersion>9.0.0-rc.1 </EntityFrameworkCorePostgreSQLVersion>
3030 <EntityFrameworkCorePomeloVersion>9.0.0-preview.1</EntityFrameworkCorePomeloVersion>
3131 <SystemTextJsonVersion>$(AspNetCoreVersion)</SystemTextJsonVersion>
3232 </PropertyGroup>
Original file line number Diff line number Diff line change 11<Project Sdk="Microsoft.NET.Sdk">
22 <PropertyGroup>
3- <TargetFrameworks>net9.0;net8.0;net6.0;netstandard1 .0</TargetFrameworks>
3+ <TargetFrameworks>net9.0;net8.0;net6.0;netstandard2 .0</TargetFrameworks>
44 <IsPackable>true</IsPackable>
55 <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66 <RootNamespace>JsonApiDotNetCore</RootNamespace>
3131
3232 <!-- We multi-target against NetStandard solely to enable consumers to share their models project with .NET Framework code. -->
3333
34- <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1 .0' ">
34+ <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2 .0' ">
3535 <Using Remove="System.Net.Http" />
3636 </ItemGroup>
3737
38- <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1 .0' ">
38+ <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2 .0' ">
3939 <Compile Remove="**/*.cs" />
4040 <Compile Include="**/*.shared.cs" />
4141 <Compile Include="**/*.netstandard.cs" />
4242 </ItemGroup>
4343
44- <ItemGroup Condition=" '$(TargetFramework)' != 'netstandard1 .0' ">
44+ <ItemGroup Condition=" '$(TargetFramework)' != 'netstandard2 .0' ">
4545 <Compile Remove="**/*.netstandard.cs" />
4646 <None Include="**/*.netstandard.cs" />
4747 </ItemGroup>
Original file line number Diff line number Diff line change 1515 <PackageReference Include="coverlet.collector" Version="$(CoverletVersion)" PrivateAssets="All" />
1616 <PackageReference Include="GitHubActionsTestLogger" Version="$(GitHubActionsTestLoggerVersion)" PrivateAssets="All" />
1717 <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="$(CodeAnalysisVersion)" />
18+ <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="$(EntityFrameworkCoreVersion)" />
1819 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(TestSdkVersion)" />
1920 </ItemGroup>
2021</Project>
You can’t perform that action at this time.
0 commit comments