File tree 5 files changed +9
-6
lines changed
src/JsonApiDotNetCore.Annotations
test/SourceGeneratorTests
5 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 16
16
<PropertyGroup >
17
17
<NoWarn >$(NoWarn);NU5104;NU1608</NoWarn >
18
18
<SuppressNETCoreSdkPreviewMessage >true</SuppressNETCoreSdkPreviewMessage >
19
+ <NuGetAuditMode >direct</NuGetAuditMode >
19
20
</PropertyGroup >
20
21
21
22
<ItemGroup >
Original file line number Diff line number Diff line change @@ -595,6 +595,7 @@ JsonApiDotNetCore.ArgumentGuard.NotNull($EXPR$);</s:String>
595
595
<s : Boolean x : Key =" /Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpKeepExistingMigration/@EntryIndexedValue" >True</s : Boolean >
596
596
<s : Boolean x : Key =" /Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpPlaceEmbeddedOnSameLineMigration/@EntryIndexedValue" >True</s : Boolean >
597
597
<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 >
598
599
<s : Boolean x : Key =" /Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EAlwaysTreatStructAsNotReorderableMigration/@EntryIndexedValue" >True</s : Boolean >
599
600
<s : Boolean x : Key =" /Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateBlankLinesAroundFieldToBlankLinesAroundProperty/@EntryIndexedValue" >True</s : Boolean >
600
601
<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 21
21
22
22
<PropertyGroup Condition =" '$(TargetFramework)' == 'net9.0'" >
23
23
<!-- 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 >
25
25
26
26
<!-- Non-published dependencies (these are safe to update, won't cause a breaking change) -->
27
27
<AspNetCoreVersion >9.0.*-*</AspNetCoreVersion >
28
28
<EntityFrameworkCoreVersion >$(EntityFrameworkCoreFrozenVersion)</EntityFrameworkCoreVersion >
29
- <EntityFrameworkCorePostgreSQLVersion >9.0.0-preview.3 </EntityFrameworkCorePostgreSQLVersion >
29
+ <EntityFrameworkCorePostgreSQLVersion >9.0.0-rc.1 </EntityFrameworkCorePostgreSQLVersion >
30
30
<EntityFrameworkCorePomeloVersion >9.0.0-preview.1</EntityFrameworkCorePomeloVersion >
31
31
<SystemTextJsonVersion >$(AspNetCoreVersion)</SystemTextJsonVersion >
32
32
</PropertyGroup >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <TargetFrameworks >net9.0;net8.0;net6.0;netstandard1 .0</TargetFrameworks >
3
+ <TargetFrameworks >net9.0;net8.0;net6.0;netstandard2 .0</TargetFrameworks >
4
4
<IsPackable >true</IsPackable >
5
5
<GeneratePackageOnBuild >true</GeneratePackageOnBuild >
6
6
<RootNamespace >JsonApiDotNetCore</RootNamespace >
31
31
32
32
<!-- We multi-target against NetStandard solely to enable consumers to share their models project with .NET Framework code. -->
33
33
34
- <ItemGroup Condition =" '$(TargetFramework)' == 'netstandard1 .0' " >
34
+ <ItemGroup Condition =" '$(TargetFramework)' == 'netstandard2 .0' " >
35
35
<Using Remove =" System.Net.Http" />
36
36
</ItemGroup >
37
37
38
- <ItemGroup Condition =" '$(TargetFramework)' == 'netstandard1 .0' " >
38
+ <ItemGroup Condition =" '$(TargetFramework)' == 'netstandard2 .0' " >
39
39
<Compile Remove =" **/*.cs" />
40
40
<Compile Include =" **/*.shared.cs" />
41
41
<Compile Include =" **/*.netstandard.cs" />
42
42
</ItemGroup >
43
43
44
- <ItemGroup Condition =" '$(TargetFramework)' != 'netstandard1 .0' " >
44
+ <ItemGroup Condition =" '$(TargetFramework)' != 'netstandard2 .0' " >
45
45
<Compile Remove =" **/*.netstandard.cs" />
46
46
<None Include =" **/*.netstandard.cs" />
47
47
</ItemGroup >
Original file line number Diff line number Diff line change 15
15
<PackageReference Include =" coverlet.collector" Version =" $(CoverletVersion)" PrivateAssets =" All" />
16
16
<PackageReference Include =" GitHubActionsTestLogger" Version =" $(GitHubActionsTestLoggerVersion)" PrivateAssets =" All" />
17
17
<PackageReference Include =" Microsoft.CodeAnalysis.CSharp" Version =" $(CodeAnalysisVersion)" />
18
+ <PackageReference Include =" Microsoft.EntityFrameworkCore.Relational" Version =" $(EntityFrameworkCoreVersion)" />
18
19
<PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" $(TestSdkVersion)" />
19
20
</ItemGroup >
20
21
</Project >
You can’t perform that action at this time.
0 commit comments