-
Notifications
You must be signed in to change notification settings - Fork 43
/
Directory.Build.props
48 lines (37 loc) · 1.66 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project>
<PropertyGroup>
<Version>0.5.1</Version>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<Authors>Drew Noakes</Authors>
<Copyright>Copyright Drew Noakes 2017-2023</Copyright>
<PackageIcon>logo-square-256px.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/drewnoakes/figgle</PackageProjectUrl>
<RepositoryUrl>https://github.com/drewnoakes/figgle.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>figlet;ascii;banner;headings</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- deterministic builds -->
<Deterministic>true</Deterministic>
<DeterministicSourcePaths>true</DeterministicSourcePaths>
<!-- debug symbols -->
<DebugType>portable</DebugType>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!-- source path -->
<IncludeSource>true</IncludeSource>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
<AnalysisLevel>latest</AnalysisLevel>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<SourceRoot Include="$(MSBuildThisFileDirectory)/"/>
<None Include="$(MSBuildThisFileDirectory)/images/logo-square-256px.png" Pack="true" PackagePath="\" Visible="false" />
<None Include="$(MSBuildThisFileDirectory)/README.md" Pack="true" PackagePath="\" Visible="false" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Roslyn.Diagnostics.Analyzers" Version="3.3.3" PrivateAssets="all" />
</ItemGroup>
</Project>