blob: 90ecd9017709adebd1c1f5e8c90110e05bb3908f (
plain) (
blame)
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">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<PackageLicenseUrl>https://git.ivar.systems/dotnet-endpoints/tree/COPYING</PackageLicenseUrl>
<RepositoryUrl>https://git.ivar.systems/dotnet-endpoints</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageVersion>1.1.0</PackageVersion>
<Title>I2R.Endpoints</Title>
<Authors>Ivar Løvlie</Authors>
<Description>A library that enables single file endpoints (or whatever).</Description>
<Copyright>Ivar Løvlie</Copyright>
<PackageReleaseNotes>
Initial realease.
</PackageReleaseNotes>
<IsPackable>true</IsPackable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\source-generator\I2R.Endpoints.Generator.csproj"
OutputItemType="Analyzer"
ReferenceOutputAssembly="false"/>
</ItemGroup>
<ItemGroup>
<AnalyzerReference Include="..\source-generator\I2R.Endpoints.Generator.csproj"/>
</ItemGroup>
</Project>
|