2021-10-29 17:54:22 +02:00
|
|
|
<Project>
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<!-- TODO: Dynamically generate Title if one wasn't set -->
|
|
|
|
<Title Condition="'$(Title)' == ''">$(Product) Asset</Title>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<CommonTags Condition="$(IsCoreProject)">$(CommonTags);.NET</CommonTags>
|
|
|
|
<PackageTags Condition="'$(PackageTags)' != ''">$(CommonTags);$(PackageTags)</PackageTags>
|
|
|
|
<PackageTags Condition="'$(PackageTags)' == ''">$(CommonTags)</PackageTags>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup Condition="$(IsPackable)">
|
2021-11-01 20:34:17 +01:00
|
|
|
<None Include="$(BuildToolsDirectory)nuget.png" Pack="true" PackagePath="\Icon.png" Visible="False" />
|
|
|
|
<None Include="$(RepositoryDirectory)License.md" Pack="true" PackagePath="\" Visible="False" />
|
|
|
|
<None Include="$(RepositoryDirectory)ThirdPartyNotices.txt" Pack="true" PackagePath="\" Visible="False" />
|
2021-10-29 17:54:22 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|