summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorburdoto2023-05-07 21:54:27 +0200
committerburdoto2023-05-07 21:54:27 +0200
commitb10bcc574bff168327e455bf74848e94d5be34a7 (patch)
tree10609f7a1d6b3fa52d787be1144eeb56bcf8eb85
parentf3cb6b5a24c517c60056f1a244d56911122dbc3b (diff)
downloadaur-b10bcc574bff168327e455bf74848e94d5be34a7.tar.gz
Update rgx.csproj
-rw-r--r--rgx.csproj14
1 files changed, 10 insertions, 4 deletions
diff --git a/rgx.csproj b/rgx.csproj
index 56395c8b9143..0313c28d4dae 100644
--- a/rgx.csproj
+++ b/rgx.csproj
@@ -9,14 +9,20 @@
<Company>comroid</Company>
<AssemblyVersion>0.1.0</AssemblyVersion>
<FileVersion>0.10</FileVersion>
+
+ <LibCommonPath>..\csapi\common\common.csproj</LibCommonPath>
</PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="CommandLineParser" Version="2.9.1" />
+
+ <ItemGroup Condition="Exists('$(LibCommon)')">
+ <ProjectReference Include="$(LibCommon)" />
+ </ItemGroup>
+
+ <ItemGroup Condition="!Exists('$(LibCommon)')">
+ <PackageReference Include="comroid.csapi.common" Version="0.1.0" />
</ItemGroup>
<ItemGroup>
- <ProjectReference Include="..\csapi\common\common.csproj" />
+ <PackageReference Include="CommandLineParser" Version="2.9.1" />
</ItemGroup>
</Project>