We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca68dd7 commit fb000f1Copy full SHA for fb000f1
2 files changed
.github/workflows/ci.yml
@@ -16,6 +16,8 @@ on:
16
jobs:
17
build:
18
runs-on: ubuntu-latest
19
+ env:
20
+ BuildingInsideCI: true
21
22
steps:
23
- name: Checkout Repository
NewMod/NewMod.csproj
@@ -14,7 +14,7 @@
14
<DefineConstants>TRACE;PC</DefineConstants>
15
</PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'ANDROID' ">
+ <PropertyGroup Condition=" '$(Configuration)' == 'ANDROID' And '$(BuildingInsideCI)' != 'true' ">
<RestoreSources>$(RestoreSources);$(MSBuildProjectDirectory)\..\libs\Android</RestoreSources>
<DefineConstants>TRACE;ANDROID_BUILD</DefineConstants>
0 commit comments