Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/uet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [ "main" ]

env:
UET_FRAMEWORK_TARGET: net9.0
UET_FRAMEWORK_TARGET: net10.0
UET_BUILDING_ON_BUILD_SERVER: "true"

jobs:
Expand Down
6 changes: 3 additions & 3 deletions UET/Lib/Common.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
</PropertyGroup>

<PropertyGroup>
<IsTrimmable Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net9.0'))">true</IsTrimmable>
<EnableTrimAnalyzer Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net9.0'))">true</EnableTrimAnalyzer>
<IsTrimmable Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net10.0'))">true</IsTrimmable>
<EnableTrimAnalyzer Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net10.0'))">true</EnableTrimAnalyzer>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnableSingleFileAnalyzer Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net9.0'))">true</EnableSingleFileAnalyzer>
<EnableSingleFileAnalyzer Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net10.0'))">true</EnableSingleFileAnalyzer>
<AnalysisLevel>latest</AnalysisLevel>
<AnalysisMode>All</AnalysisMode>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
Expand Down
2 changes: 1 addition & 1 deletion UET/Lib/Framework.AspNetCore.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!-- This must remain in sync with Framework.Build.props. -->
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="9.0.0" Condition="'$(TargetFramework)' == 'net9.0'" />
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="9.0.0" Condition="'$(TargetFramework)' == 'net10.0'" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions UET/Lib/Framework.Build.props
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project>

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>

<RedpointSystemLibraryVersion>9.*</RedpointSystemLibraryVersion>
<RedpointSystemLibraryVersion>10.*</RedpointSystemLibraryVersion>

<RedpointIsFrameworkImported>true</RedpointIsFrameworkImported>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
<file src="README.md" target="README.md" />
<file src="Redpoint.CloudFramework.CLI.targets" target="buildTransitive" />
<file src="Redpoint.CloudFramework.CLI.targets" target="build" />
<file src="bin\$configuration$\net9.0\**\*.*" target="tools\net9.0\any" exclude="bin\$configuration$\net9.0\publish\**\*.*" />
<file src="bin\$configuration$\net10.0\**\*.*" target="tools\net10.0\any" exclude="bin\$configuration$\net10.0\publish\**\*.*" />
</files>
</package>
Loading