-
-
Notifications
You must be signed in to change notification settings - Fork 0
Modernize repository to match other ImmediatePlatform products #84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "test": { | ||
| "runner": "Microsoft.Testing.Platform" | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,7 +1,6 @@ | ||||||||||||
| <Project Sdk="Microsoft.NET.Sdk"> | ||||||||||||
|
|
||||||||||||
| <PropertyGroup> | ||||||||||||
| <TargetFrameworks>net8.0;net9.0</TargetFrameworks> | ||||||||||||
| <RootNamespace>Immediate.Cache</RootNamespace> | ||||||||||||
| </PropertyGroup> | ||||||||||||
|
|
||||||||||||
|
|
@@ -12,8 +11,4 @@ | |||||||||||
| <PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" /> | ||||||||||||
| </ItemGroup> | ||||||||||||
|
|
||||||||||||
|
||||||||||||
| <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> | |
| <Using Include="System.Object" Alias="Lock" /> | |
| </ItemGroup> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Setting
<LangVersion>14</LangVersion>effectively requires a .NET SDK/new enough compiler for all contributors. Since there is noglobal.jsonin the repo to pin/declare the required SDK, builds may fail inconsistently depending on the locally installed SDK. Consider adding aglobal.jsonthat pins a compatible SDK (or reverting tolatest/latestMajor) to make the requirement explicit.