-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
28 lines (26 loc) · 1.17 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<TargetFrameworks>net5.0;net6.0</TargetFrameworks>
<LangVersion>10</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<NoWarn>$(NoWarn);CS1591;CS0618;</NoWarn>
<Nullable>enable</Nullable>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<UpdateVersionProperties>true</UpdateVersionProperties>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageIcon>logo.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/UbiquitousAS/autodevops.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>GitLab AutoDevOps implementation with Pulumi</Description>
<Authors>Alexey Zimarev</Authors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MinVer" Version="3.1.0" PrivateAssets="All"/>
<PackageReference Include="JetBrains.Annotations" Version="2021.3.0" PrivateAssets="All"/>
</ItemGroup>
<ItemGroup>
<None Include="..\logo.png" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>