Skip to content

Commit 86abd42

Browse files
Use IntermediateOutputPath instead of OutDir for RestoreToBundle
1 parent 7bfc04e commit 86abd42

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/3:-Distributing-FNA-Games.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,8 @@ MSBuild technically supports something called `ExcludeFromSingleFile` but this o
147147
</ItemGroup>
148148
</Target>
149149
<Target Name="RestoreToBundle" AfterTargets="GenerateSingleFileBundle">
150-
<Copy SourceFiles="$(OutDir)/flibitGame.dll" DestinationFolder="$(PublishDir)" />
151-
<Copy SourceFiles="$(OutDir)/FNA.dll" DestinationFolder="$(PublishDir)" />
150+
<Copy SourceFiles="$(IntermediateOutputPath)/flibitGame.dll" DestinationFolder="$(PublishDir)" />
151+
<Copy SourceFiles="$(IntermediateOutputPath)/FNA.dll" DestinationFolder="$(PublishDir)" />
152152
</Target>
153153
```
154154

0 commit comments

Comments
 (0)