Skip to content
This repository was archived by the owner on Jun 20, 2023. It is now read-only.

Commit 2bd202f

Browse files
committed
Fix paths to things in project template
Since binderator changes this structure a bit now
1 parent ed5b6bb commit 2bd202f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/AndroidSupportProject.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
<ItemGroup>
7474
@foreach (var art in @Model.MavenArtifacts) {
7575
if (art.MavenArtifactPackaging == "aar") {
76-
<LibraryProjectZip Include="..\..\externals\@(art.MavenGroupId).@(art.MavenArtifactId).aar" />
76+
<LibraryProjectZip Include="..\..\externals\@(art.MavenGroupId)\@(art.MavenArtifactId).aar" />
7777
}
7878
}
7979
</ItemGroup>
@@ -119,7 +119,7 @@
119119
Include="..\..\externals\@(art.MavenGroupId).@(art.MavenArtifactId)\libs\*.jar"
120120
/>
121121
} else {
122-
<EmbeddedJar Include="..\..\externals\@(art.MavenGroupId).@(art.MavenArtifactId).jar" />
122+
<EmbeddedJar Include="..\..\externals\@(art.MavenGroupId)\@(art.MavenArtifactId).jar" />
123123
}
124124
}
125125
</ItemGroup>

0 commit comments

Comments
 (0)