Microsoft.DotNet.Web.Spa.ProjectTemplates.csproj 1.2 KB

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.0</TargetFramework>
  4. <Description>Single Page Application templates for ASP.NET Core
  5. To install the templates in this package, run 'dotnet new --install $(PackageId)::$(PackageVersion)'.</Description>
  6. <PackageTags>$(PackageTags);spa</PackageTags>
  7. <IsShippingPackage>true</IsShippingPackage>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <!-- These projects product packages that the templates depend on. See GenerateContent.targets -->
  11. <PackageVersionVariableReference Include="$(RepositoryRoot)src\Mvc\Mvc.NewtonsoftJson\src\Microsoft.AspNetCore.Mvc.NewtonsoftJson.csproj" />
  12. <PackageVersionVariableReference Include="$(RepositoryRoot)src\Middleware\SpaServices.Extensions\src\Microsoft.AspNetCore.SpaServices.Extensions.csproj" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <GeneratedContent Include="Angular-CSharp.csproj.in" OutputPath="content/Angular-CSharp/Company.WebApplication1.csproj" />
  16. <GeneratedContent Include="React-CSharp.csproj.in" OutputPath="content/React-CSharp/Company.WebApplication1.csproj" />
  17. <GeneratedContent Include="ReactRedux-CSharp.csproj.in" OutputPath="content/ReactRedux-CSharp/Company.WebApplication1.csproj" />
  18. </ItemGroup>
  19. </Project>