Skip to content

Commit 97312a7

Browse files
committed
Fix csproj in non-testing configurations
1 parent 0cc3166 commit 97312a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/AlternateLife.RageMP.Net.Example/AlternateLife.RageMP.Net.Example.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@
3333
<TargetLocation Condition=" '$(Configuration)' == 'Linux' ">/ragemp-srv/dotnet/resources/example/</TargetLocation>
3434
</PropertyGroup>
3535

36-
<Copy SourceFiles="$(CopiedFiles)" DestinationFolder="$(TargetLocation)" SkipUnchangedFiles="false" />
36+
<Copy Condition=" '$(TargetLocation)' != '' " SourceFiles="$(CopiedFiles)" DestinationFolder="$(TargetLocation)" SkipUnchangedFiles="false" />
3737
</Target>
3838
</Project>

src/AlternateLife.RageMP.Net/AlternateLife.RageMP.Net.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@
5050
<TargetLocation Condition=" '$(Configuration)' == 'Linux' ">/ragemp-srv/dotnet/resources/plugins/</TargetLocation>
5151
</PropertyGroup>
5252

53-
<Copy SourceFiles="$(CopiedFiles)" DestinationFolder="$(TargetLocation)" SkipUnchangedFiles="false" />
53+
<Copy Condition=" '$(TargetLocation)' != '' " SourceFiles="$(CopiedFiles)" DestinationFolder="$(TargetLocation)" SkipUnchangedFiles="false" />
5454
</Target>
5555
</Project>

0 commit comments

Comments
 (0)