-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOproto.Lambda.OpenApi.SourceGenerator.csproj
More file actions
87 lines (75 loc) · 3.76 KB
/
Oproto.Lambda.OpenApi.SourceGenerator.csproj
File metadata and controls
87 lines (75 loc) · 3.76 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>annotations</Nullable>
<LangVersion>12</LangVersion>
<!-- Analyzer specific settings -->
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<!-- Package settings -->
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.0.0</Version>
<IncludeBuildOutput>true</IncludeBuildOutput>
<IsRoslynComponent>true</IsRoslynComponent>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<DevelopmentDependency>true</DevelopmentDependency>
<NoPackageAnalysis>true</NoPackageAnalysis>
<!-- Package Metadata -->
<PackageId>Oproto.Lambda.OpenApi.SourceGenerator</PackageId>
<Title>Oproto Lambda OpenAPI Source Generator</Title>
<Description>Source generator that creates OpenAPI specifications from AWS Lambda functions with Lambda Annotations</Description>
<Authors>Oproto Inc</Authors>
<Company>Oproto Inc</Company>
<Product>Oproto Lambda OpenAPI Source Generator</Product>
<Copyright>Copyright © 2025 Oproto Inc</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/oproto/lambda-openapi</PackageProjectUrl>
<RepositoryUrl>https://github.com/oproto/lambda-openapi</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>openapi;swagger;aws;lambda;source-generator;api-documentation;roslyn</PackageTags>
<PackageReleaseNotes>Initial public release</PackageReleaseNotes>
<!-- Documentation - disabled as this is an internal component -->
<GenerateDocumentationFile>false</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Oproto.Lambda.OpenApi.Build\Oproto.Lambda.OpenApi.Build.csproj">
<Private>true</Private>
<ReferenceOutputAssembly>true</ReferenceOutputAssembly>
<PrivateAssets>all</PrivateAssets>
</ProjectReference>
<ProjectReference Include="..\Oproto.Lambda.OpenApi\Oproto.Lambda.OpenApi.csproj">
<Private>true</Private>
<ReferenceOutputAssembly>true</ReferenceOutputAssembly>
<PrivateAssets>all</PrivateAssets>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" PrivateAssets="all"/>
<PackageReference Include="Microsoft.OpenApi" Version="1.6.22" PrivateAssets="all" GeneratePathProperty="true"/>
<PackageReference Include="System.Text.Json" Version="8.0.0"/>
</ItemGroup>
<ItemGroup>
<!-- Package the generator -->
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true"
PackagePath="analyzers/dotnet/cs" Visible="false"/>
<!-- Package dependencies -->
<None Include="$(PkgMicrosoft_OpenApi)\lib\netstandard2.0\*.dll" Pack="true"
PackagePath="analyzers/dotnet/cs" Visible="false"/>
<!-- Package the Tasks -->
<None Include="$(OutputPath)\Oproto.Lambda.OpenApi.Build.dll" Pack="true"
PackagePath="build" Visible="false"/>
<!-- Package Oproto.Lambda.OpenApi -->
<None Include="$(OutputPath)\Oproto.Lambda.OpenApi.dll" Pack="true"
PackagePath="build;lib/netstandard2.0" Visible="false"/>
<!-- Include the props and targets files -->
<None Include="build\**\*.props" Pack="true"
PackagePath="build"/>
<None Include="build\**\*.targets" Pack="true"
PackagePath="build"/>
</ItemGroup>
</Project>