2022-11-11 11:40:53 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-11-10 17:02:40 +01:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2022-11-11 11:40:53 +01:00
|
|
|
<RootNamespace>ViteProxy</RootNamespace>
|
|
|
|
|
<AssemblyName>ViteProxy</AssemblyName>
|
|
|
|
|
<Version>0.0.0</Version>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Product>ViteProxy</Product>
|
|
|
|
|
<Title>ViteProxy</Title>
|
|
|
|
|
<Copyright>Copyright © Tobias Klika 2022</Copyright>
|
|
|
|
|
<Tags>Vite, npm, middleware, server, development</Tags>
|
|
|
|
|
<Authors>Tobias Klika</Authors>
|
|
|
|
|
<Description>ViteProxy is a proxy for vite projects within ASP.NET Core.</Description>
|
|
|
|
|
<RepositoryType>git</RepositoryType>
|
|
|
|
|
<RepositoryUrl>https://github.com/ceee/ViteProxy.git</RepositoryUrl>
|
|
|
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
|
|
|
<PackageId>ViteProxy</PackageId>
|
|
|
|
|
<PackageProjectUrl>https://github.com/ceee/ViteProxy</PackageProjectUrl>
|
2022-11-11 12:07:59 +01:00
|
|
|
<PackageIconUrl>https://raw.githubusercontent.com/ceee/ViteProxy/main/viteproxy-logo.png</PackageIconUrl>
|
2022-11-11 11:40:53 +01:00
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
|
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
|
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
2022-11-10 17:02:40 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
|
|
|
</ItemGroup>
|
2022-11-11 11:40:53 +01:00
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
|
|
|
|
|
</ItemGroup>
|
2022-11-10 17:02:40 +01:00
|
|
|
|
|
|
|
|
</Project>
|