2024-02-05 21:33:40 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2024-02-05 15:58:38 +01:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
|
|
|
<SpaRoot>..\advercalculator.client</SpaRoot>
|
|
|
|
|
<SpaProxyLaunchCommand>npm run dev</SpaProxyLaunchCommand>
|
|
|
|
|
<SpaProxyServerUrl>https://localhost:5173</SpaProxyServerUrl>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-02-05 21:33:40 +01:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.1" />
|
2024-02-05 15:58:38 +01:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.SpaProxy">
|
|
|
|
|
<Version>8.*-*</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\advercalculator.client\advercalculator.client.esproj">
|
|
|
|
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|