-
Notifications
You must be signed in to change notification settings - Fork 4
/
Atc.Rest.ApiGenerator.csproj
29 lines (25 loc) · 1.52 KB
/
Atc.Rest.ApiGenerator.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PackageId>Atc.Rest.ApiGenerator</PackageId>
<PackageTags>rest;api;netstandard;generator</PackageTags>
<Description>Atc.Rest.ApiGenerator is a WebApi C# code generator using a OpenApi 3.0.x specification YAML file.</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Atc" Version="2.0.525" />
<PackageReference Include="Atc.CodeAnalysis.CSharp" Version="2.0.525" />
<PackageReference Include="Atc.Console.Spectre" Version="2.0.525" />
<PackageReference Include="Atc.DotNet" Version="2.0.525" />
<PackageReference Include="Atc.OpenApi" Version="2.0.525" />
<PackageReference Include="Atc.Rest.Client" Version="1.0.79" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.0" />
<PackageReference Include="Microsoft.OpenApi.Readers" Version="1.6.22" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Atc.Rest.ApiGenerator.Client.CSharp\Atc.Rest.ApiGenerator.Client.CSharp.csproj" />
<ProjectReference Include="..\Atc.Rest.ApiGenerator.Contracts\Atc.Rest.ApiGenerator.Contracts.csproj" />
<ProjectReference Include="..\Atc.Rest.ApiGenerator.Framework.Minimal\Atc.Rest.ApiGenerator.Framework.Minimal.csproj" />
<ProjectReference Include="..\Atc.Rest.ApiGenerator.Framework.Mvc\Atc.Rest.ApiGenerator.Framework.Mvc.csproj" />
</ItemGroup>
</Project>