We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc18b70 commit 224e256Copy full SHA for 224e256
KSPCommon.targets
@@ -22,7 +22,10 @@
22
23
<!-- Use CKAN to install mods for any references tagged with a CKAN Identifier -->
24
<Target Name="CKANInstall">
25
- <Exec Command="ckan compat add --headless --gamedir $(KSPROOT) $(CKANCompatibleVersions)" Condition=" '$(CKANCompatibleVersions)' != '' "/>
+ <ItemGroup>
26
+ <CKANCompatibleVersionItems Include="$(CKANCompatibleVersions)"/>
27
+ </ItemGroup>
28
+ <Exec Command="ckan compat add --headless --gamedir $(KSPROOT) %(CKANCompatibleVersionItems)" Condition=" '$(CKANCompatibleVersions)' != '' "/>
29
<Exec Command="ckan install --no-recommends --headless --gamedir $(KSPROOT) %(Reference.CKANIdentifier)" Condition=" '%(Reference.CKANIdentifier)' != '' "/>
30
</Target>
31
</Project>
0 commit comments