-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJMayer.Example.ASPReact.Server.csproj
More file actions
30 lines (26 loc) · 1.07 KB
/
JMayer.Example.ASPReact.Server.csproj
File metadata and controls
30 lines (26 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<SpaRoot>..\jmayer.example.aspreact.client</SpaRoot>
<SpaProxyLaunchCommand>npm run dev</SpaProxyLaunchCommand>
<SpaProxyServerUrl>https://localhost:5173</SpaProxyServerUrl>
<Version>9.0.1</Version>
<Authors>jmayer913</Authors>
<Company>jmayer913</Company>
<RepositoryUrl>https://github.com/jmayer913/JMayer-Example-ASPReact</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JMayer.Web.Mvc" Version="9.0.2" />
<PackageReference Include="Microsoft.AspNetCore.SpaProxy">
<Version>9.0.12</Version>
</PackageReference>
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\jmayer.example.aspreact.client\jmayer.example.aspreact.client.esproj">
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
</ProjectReference>
</ItemGroup>
</Project>