|
26 | 26 | <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
27 | 27 | </PropertyGroup> |
28 | 28 |
|
29 | | - <!-- Uncomment this property group to build with NET 10.0 locally or set TargetNetNext to True in a CLI arg--> |
30 | | - <!-- <PropertyGroup> |
31 | | - <TargetNetNext>True</TargetNetNext> |
32 | | - </PropertyGroup> --> |
33 | 29 |
|
34 | 30 | <PropertyGroup> |
35 | 31 | <!-- For files to appear in the Visual Studio Solution explorer given we have conditional inclusion in some projects (IdWeb for instance) |
36 | 32 | we need to have the higher framework, even if this produces a warning in the IDE --> |
37 | | - <TargetFrameworks>net8.0; net9.0; net462; net472; netstandard2.0</TargetFrameworks> |
38 | | - <TargetFrameworks Condition="'$(TargetNetNext)'== 'True'">$(TargetFrameworks); net10.0</TargetFrameworks> |
| 33 | + <TargetFrameworks>net8.0; net9.0; net10.0; net462; net472; netstandard2.0</TargetFrameworks> |
39 | 34 | <SignAssembly>true</SignAssembly> |
40 | 35 | <AssemblyOriginatorKeyFile>../../build/MSAL.snk</AssemblyOriginatorKeyFile> |
41 | 36 | <GenerateDocumentationFile>true</GenerateDocumentationFile> |
|
46 | 41 | <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
47 | 42 | </PropertyGroup> |
48 | 43 |
|
49 | | - <PropertyGroup Condition="'$(TargetNetNext)' == 'True'"> |
50 | | - <SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage> |
51 | | - <!-- Compiling w/ Net 10.0 SDK gives the NU1510 warning in every net core version "PackageReference System.Formats.Asn1 will not be pruned. |
52 | | - Consider removing this package from your dependencies, as it is likely unnecessary." However, the ref is necessary due to Microsoft Security Advisory CVE-2024-38095. |
53 | | - For NU5104 it prevents us from packing release packages with prerelease dependencies. But we want to do that so customers can get a preview of running with .NET 10. --> |
54 | | - <WarningsNotAsErrors>$(WarningsNotAsErrors);NU1510;NU5104</WarningsNotAsErrors> |
55 | | - <NoWarn>$(NoWarn);NU1510;NU5104</NoWarn> |
56 | | - <CheckEolTargetFramework>false</CheckEolTargetFramework> |
57 | | - </PropertyGroup> |
58 | 44 |
|
59 | 45 | <PropertyGroup Condition="'$(TF_BUILD)' == 'true'"> |
60 | 46 | <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
|
67 | 53 | </None> |
68 | 54 | </ItemGroup> |
69 | 55 |
|
70 | | - <ItemGroup Label="Build Tools" Condition="$([MSBuild]::IsOsPlatform('Windows')) and '$(TargetFramework)' != 'net8.0' and '$(TargetFramework)' != 'net9.0'"> |
| 56 | + <ItemGroup Label="Build Tools" Condition="$([MSBuild]::IsOsPlatform('Windows')) and '$(TargetFramework)' != 'net8.0' and '$(TargetFramework)' != 'net9.0' and '$(TargetFramework)' != 'net10.0'"> |
71 | 57 | <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" /> |
72 | 58 | </ItemGroup> |
73 | 59 |
|
|
132 | 118 | </PropertyGroup> |
133 | 119 |
|
134 | 120 | <PropertyGroup Condition="'$(TargetFramework)' == 'net10.0'"> |
135 | | - <NetTenRuntimeVersion>10.0.0-rc.1.25451.107</NetTenRuntimeVersion> |
136 | | - <AspNetCoreTenRuntimeVersion>10.0.0-rc.1.25451.107</AspNetCoreTenRuntimeVersion> |
| 121 | + <NetTenRuntimeVersion>10.0.0</NetTenRuntimeVersion> |
| 122 | + <AspNetCoreTenRuntimeVersion>10.0.0</AspNetCoreTenRuntimeVersion> |
137 | 123 | <MicrosoftAspNetCoreAuthenticationJwtBearerVersion>$(AspNetCoreTenRuntimeVersion)</MicrosoftAspNetCoreAuthenticationJwtBearerVersion> |
138 | 124 | <MicrosoftAspNetCoreAuthenticationOpenIdConnectVersion>$(AspNetCoreTenRuntimeVersion)</MicrosoftAspNetCoreAuthenticationOpenIdConnectVersion> |
139 | 125 | <MicrosoftExtensionsCachingMemoryVersion>$(NetTenRuntimeVersion)</MicrosoftExtensionsCachingMemoryVersion> |
|
0 commit comments