-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
32 lines (28 loc) · 1.29 KB
/
Directory.Build.props
File metadata and controls
32 lines (28 loc) · 1.29 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
<Project>
<PropertyGroup>
<ParentPropsFile>$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))</ParentPropsFile>
</PropertyGroup>
<Import Project="$(ParentPropsFile)" />
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsAotCompatible>true</IsAotCompatible>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/feO2x/Light.TemporaryStreams.git</RepositoryUrl>
<PackageProjectUrl>https://github.com/feO2x/Light.TemporaryStreams</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PackageTags>streaming;memory-management;form-file</PackageTags>
<PackageIcon>light-logo.png</PackageIcon>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<None Include="../../images/light-logo.png" Pack="true" PackagePath="\" />
<None Include="../../readme.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>