-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
46 lines (39 loc) · 1.86 KB
/
Directory.Build.props
File metadata and controls
46 lines (39 loc) · 1.86 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
<Project>
<PropertyGroup>
<!-- Version Management -->
<VersionPrefix>0.0.0</VersionPrefix>
<VersionSuffix>dev</VersionSuffix>
<!-- CI/CD can override these: dotnet build /p:VersionPrefix=1.0.0 /p:VersionSuffix=beta1 -->
<!-- Common properties for all projects -->
<LangVersion>12</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
<WarningsNotAsErrors>NU1701;NU1702;NU1903</WarningsNotAsErrors>
<!-- Package properties -->
<Authors>Oproto Inc</Authors>
<Company>Oproto Inc</Company>
<Product>Oproto Lambda OpenAPI Generator</Product>
<Copyright>Copyright © 2025 Oproto Inc</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://lambdaopenapi.dev</PackageProjectUrl>
<RepositoryUrl>https://github.com/oproto/lambda-openapi</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>openapi;swagger;aws;lambda;source-generator;api-documentation</PackageTags>
<!-- Package Icon -->
<PackageIcon>icon.png</PackageIcon>
<!-- Source Link -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!-- Deterministic builds -->
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
<!-- Package Icon - conditionally included if file exists -->
<ItemGroup Condition="Exists('$(MSBuildThisFileDirectory)docs/assets/icon.png')">
<None Include="$(MSBuildThisFileDirectory)docs/assets/icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>
</Project>