|
3 | 3 | <IncludeSymbols>true</IncludeSymbols> |
4 | 4 | <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
5 | 5 | <NoWarn>BL9993;BL0007;BL0005</NoWarn> |
6 | | - <TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks> |
| 6 | + <TargetFrameworks>net6.0;net7.0;net8.0;net9.0;net10.0</TargetFrameworks> |
7 | 7 | <RazorLangVersion>7.0</RazorLangVersion> |
8 | 8 | <LangVersion>latest</LangVersion> |
9 | 9 | <OutputType>Library</OutputType> |
|
34 | 34 | <PackageReference Include="Microsoft.AspNetCore.Components.Web" Condition="'$(TargetFramework)' == 'net8.0'" Version="8.0.0" /> |
35 | 35 | <PackageReference Include="Microsoft.AspNetCore.Components" Condition="'$(TargetFramework)' == 'net9.0'" Version="9.*-*" /> |
36 | 36 | <PackageReference Include="Microsoft.AspNetCore.Components.Web" Condition="'$(TargetFramework)' == 'net9.0'" Version="9.*-*" /> |
| 37 | + <PackageReference Include="Microsoft.AspNetCore.Components" Condition="'$(TargetFramework)' == 'net10.0'" Version="10.*-*" /> |
| 38 | + <PackageReference Include="Microsoft.AspNetCore.Components.Web" Condition="'$(TargetFramework)' == 'net10.0'" Version="10.*-*" /> |
37 | 39 | <PackageReference Include="Radzen.Terser.MSBuild" Version="0.0.4" PrivateAssets="All" /> |
38 | 40 | </ItemGroup> |
39 | 41 |
|
|
55 | 57 | </PropertyGroup> |
56 | 58 |
|
57 | 59 | <ItemGroup> |
58 | | - <Sass Include="$(MSBuildProjectDirectory)/themes/*.scss" Exclude="$(MSBuildProjectDirectory)/themes/_*.scss" Condition="'$(TargetFramework)' == 'net9.0'" /> |
| 60 | + <Sass Include="$(MSBuildProjectDirectory)/themes/*.scss" Exclude="$(MSBuildProjectDirectory)/themes/_*.scss" Condition="'$(TargetFramework)' == 'net10.0'" /> |
59 | 61 | </ItemGroup> |
60 | 62 |
|
61 | | - <Target Name="Sass" BeforeTargets="BeforeBuild" Condition="'$(TargetFramework)' == 'net9.0'"> |
| 63 | + <Target Name="Sass" BeforeTargets="BeforeBuild" Condition="'$(TargetFramework)' == 'net10.0'"> |
62 | 64 | <PropertyGroup> |
63 | 65 | <_SassFileList>@(Sass->'"%(FullPath)"', ' ')</_SassFileList> |
64 | 66 | <DartSassBuilderArgs>files $(_SassFileList) --outputstyle $(DartSassOutputStyle) --level $(DartSassOutputLevel)</DartSassBuilderArgs> |
|
67 | 69 | <Message Text="Converted SassFile list to argument" Importance="$(DartSassMessageLevel)" /> |
68 | 70 | </Target> |
69 | 71 |
|
70 | | - <Target Name="MoveCss" AfterTargets="AfterCompile" Condition="'$(TargetFramework)' == 'net9.0'"> |
| 72 | + <Target Name="MoveCss" AfterTargets="AfterCompile" Condition="'$(TargetFramework)' == 'net10.0'"> |
71 | 73 | <ItemGroup> |
72 | 74 | <CssFile Include="$(MSBuildProjectDirectory)/themes/*.css" /> |
73 | 75 | </ItemGroup> |
74 | 76 | <Move SourceFiles="@(CssFile)" DestinationFolder="$(MSBuildProjectDirectory)/wwwroot/css/" /> |
75 | 77 | </Target> |
76 | 78 |
|
77 | | - <Target Name="MinifyTest" BeforeTargets="Build" Condition="'$(TargetFramework)' == 'net9.0'"> |
| 79 | + <Target Name="MinifyTest" BeforeTargets="Build" Condition="'$(TargetFramework)' == 'net10.0'"> |
78 | 80 | <TerserMinify InputFile="wwwroot\Radzen.Blazor.js" OutputFile="wwwroot\Radzen.Blazor.min.js" /> |
79 | 81 | </Target> |
80 | 82 |
|
|
0 commit comments