a101c703a1
* First try at refactor of Prepare.targets * Enable restore of CLI build tasks * Fix up build * Feedback * Newlines * Add new props to sln * CommitCount * NuGet.config * WorkingDir * packages dir path * Add missing nuget.configs * Workaround for https://github.com/NuGet/Home/issues/4583 * Match NuGet.Config casing * Put back Version Badge Properties * Remove duplicate
10 lines
574 B
XML
10 lines
574 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<VersionBadgeMoniker>$(OSName)_$(Architecture)</VersionBadgeMoniker>
|
|
<VersionBadgeMoniker Condition=" '$(Rid)' == 'ubuntu.16.04-x64' ">Ubuntu_16_04_x64</VersionBadgeMoniker>
|
|
<VersionBadgeMoniker Condition=" '$(Rid)' == 'fedora.23-x64' ">Fedora_23_x64</VersionBadgeMoniker>
|
|
<VersionBadgeMoniker Condition=" '$(Rid)' == 'opensuse.13.2-x64' ">openSUSE_13_2_x64</VersionBadgeMoniker>
|
|
|
|
<VersionBadge>$(BaseOutputDirectory)/$(VersionBadgeMoniker)_$(Configuration)_version_badge.svg</VersionBadge>
|
|
</PropertyGroup>
|
|
</Project>
|