|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk.Web"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFramework>net8.0</TargetFramework> |
| 4 | + <TargetFramework>net9.0</TargetFramework> |
5 | 5 | <Nullable>enable</Nullable> |
6 | 6 | <IsPackable>false</IsPackable> |
7 | | - <SpaRoot>ClientApp\</SpaRoot> |
| 7 | + <SpaRoot>ClientApp</SpaRoot> |
8 | 8 | <SpaProxyServerUrl>https://localhost:44413</SpaProxyServerUrl> |
9 | 9 | <SpaProxyLaunchCommand>npm start</SpaProxyLaunchCommand> |
10 | 10 | <ImplicitUsings>enable</ImplicitUsings> |
11 | 11 | </PropertyGroup> |
12 | 12 |
|
13 | 13 | <ItemGroup> |
14 | | - <PackageReference Include="Microsoft.AspNetCore.SpaProxy" Version="6.0.20" /> |
15 | | - <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.0" /> |
| 14 | + <PackageReference Include="Microsoft.AspNetCore.SpaProxy" Version="9.0.5" /> |
| 15 | + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.0" /> |
16 | 16 | <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> |
17 | | - <PackageReference Include="NUnit" Version="3.13.3" /> |
18 | | - <PackageReference Include="NUnit3TestAdapter" Version="4.5.0" /> |
| 17 | + <PackageReference Include="NUnit" Version="4.3.2" /> |
| 18 | + <PackageReference Include="NUnit3TestAdapter" Version="5.0.0" /> |
19 | 19 | </ItemGroup> |
20 | 20 |
|
21 | 21 | <ItemGroup> |
|
25 | 25 | <None Include="$(SpaRoot)**" Exclude="$(SpaRoot)node_modules\**" /> |
26 | 26 | </ItemGroup> |
27 | 27 |
|
28 | | - <Target Name="DebugEnsureNodeEnv" BeforeTargets="Build" Condition=" '$(Configuration)' == 'Debug' And !Exists('$(SpaRoot)node_modules') "> |
| 28 | + <Target Name="DebugEnsureNodeEnv" BeforeTargets="Build" Condition=" '$(Configuration)' == 'Debug' And !Exists('$(SpaRoot)node_modules') "> |
29 | 29 | <!-- Ensure Node.js is installed --> |
30 | 30 | <Exec Command="node --version" ContinueOnError="true"> |
31 | 31 | <Output TaskParameter="ExitCode" PropertyName="ErrorCode" /> |
|
0 commit comments