-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Directory.Build.targets
27 lines (23 loc) · 1.25 KB
/
Directory.Build.targets
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
<Project>
<PropertyGroup Condition="'$(IsPackable)'=='true'">
<PackageOutputPath>..\..\dist</PackageOutputPath>
<IncludeSymbols>true</IncludeSymbols>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Authors>Richard Herman</Authors>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/GeekyEggo/SharpDeck</PackageProjectUrl>
<RepositoryUrl>https://github.com/GeekyEggo/SharpDeck</RepositoryUrl>
<PackageTags>Elgato,Stream-Deck,Streaming,SDK</PackageTags>
</PropertyGroup>
<ItemGroup Condition="'$(IsPackable)'=='true'">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<None Include="..\..\LICENSE.md" Pack="true" PackagePath="" Visible="false" />
<None Include="..\..\README.md" Pack="true" PackagePath="" Visible="false" />
</ItemGroup>
</Project>