-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDevProxy.Hosting.csproj
More file actions
31 lines (27 loc) · 1.18 KB
/
DevProxy.Hosting.csproj
File metadata and controls
31 lines (27 loc) · 1.18 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
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.2.2</Version>
<Authors>Dev Proxy</Authors>
<Title>Dev Proxy .NET Aspire extensions</Title>
<Description>.NET Aspire extensions for adding Dev Proxy as a resource to your .NET Aspire application.</Description>
<PackageId>DevProxy.Hosting</PackageId>
<PackageTags>devproxy;aspire;dotnet</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://aka.ms/devproxy</PackageProjectUrl>
<RepositoryUrl>https://github.com/dev-proxy-tools/aspire</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\" />
<None Include="..\assets\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Aspire.Hosting" Version="9.5.2" />
</ItemGroup>
</Project>