-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
35 lines (28 loc) · 1.3 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
<Project>
<!-- See https://aka.ms/dotnet/msbuild/customize for more details on customizing your build -->
<PropertyGroup>
<LangVersion>latestMajor</LangVersion>
<Nullable>enable</Nullable>
<NoWarn>NU5128</NoWarn>
<Authors>Mark Junker;Fubar Development Junker</Authors>
<Copyright>Copyright © Fubar Development Junker 2023</Copyright>
<Description>Layout engine</Description>
<RepositoryUrl>https://github.com/FubarDevelopment/LayoutEngine.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<Deterministic>True</Deterministic>
</PropertyGroup>
<ItemGroup>
<SourceRoot Include="$(MSBuildThisFileDirectory)"/>
</ItemGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)/README.md" PackagePath="\" Pack="true" Visible="false" />
<None Include="$(MSBuildThisFileDirectory)/doc/**" PackagePath="\doc" Pack="true" Visible="false" />
</ItemGroup>
</Project>