diff options
-rw-r--r-- | Ryujinx.Ava/Ryujinx.Ava.csproj | 12 | ||||
-rw-r--r-- | Ryujinx.Headless.SDL2/Ryujinx.Headless.SDL2.csproj | 12 | ||||
-rw-r--r-- | Ryujinx/Ryujinx.csproj | 12 |
3 files changed, 24 insertions, 12 deletions
diff --git a/Ryujinx.Ava/Ryujinx.Ava.csproj b/Ryujinx.Ava/Ryujinx.Ava.csproj index 24bdf22d..c0891e71 100644 --- a/Ryujinx.Ava/Ryujinx.Ava.csproj +++ b/Ryujinx.Ava/Ryujinx.Ava.csproj @@ -59,14 +59,18 @@ </ItemGroup> <ItemGroup> - <ContentWithTargetPath Include="..\distribution\windows\alsoft.ini" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'"> + <Content Include="..\distribution\windows\alsoft.ini" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> <TargetPath>alsoft.ini</TargetPath> - </ContentWithTargetPath> - <ContentWithTargetPath Include="..\distribution\legal\THIRDPARTY.md"> + </Content> + <Content Include="..\distribution\legal\THIRDPARTY.md"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> <TargetPath>THIRDPARTY.md</TargetPath> - </ContentWithTargetPath> + </Content> + <Content Include="..\LICENSE.txt"> + <CopyToOutputDirectory>Always</CopyToOutputDirectory> + <TargetPath>LICENSE.txt</TargetPath> + </Content> </ItemGroup> <ItemGroup> diff --git a/Ryujinx.Headless.SDL2/Ryujinx.Headless.SDL2.csproj b/Ryujinx.Headless.SDL2/Ryujinx.Headless.SDL2.csproj index 83ae87eb..9a821b86 100644 --- a/Ryujinx.Headless.SDL2/Ryujinx.Headless.SDL2.csproj +++ b/Ryujinx.Headless.SDL2/Ryujinx.Headless.SDL2.csproj @@ -33,10 +33,14 @@ </ItemGroup> <ItemGroup> - <ContentWithTargetPath Include="..\distribution\legal\THIRDPARTY.md"> - <CopyToOutputDirectory>Always</CopyToOutputDirectory> - <TargetPath>THIRDPARTY.md</TargetPath> - </ContentWithTargetPath> + <Content Include="..\distribution\legal\THIRDPARTY.md"> + <CopyToOutputDirectory>Always</CopyToOutputDirectory> + <TargetPath>THIRDPARTY.md</TargetPath> + </Content> + <Content Include="..\LICENSE.txt"> + <CopyToOutputDirectory>Always</CopyToOutputDirectory> + <TargetPath>LICENSE.txt</TargetPath> + </Content> </ItemGroup> <!-- Due to .net core 3.1 embedded resource loading --> diff --git a/Ryujinx/Ryujinx.csproj b/Ryujinx/Ryujinx.csproj index ba50c109..f8459e14 100644 --- a/Ryujinx/Ryujinx.csproj +++ b/Ryujinx/Ryujinx.csproj @@ -49,14 +49,18 @@ </ItemGroup> <ItemGroup> - <ContentWithTargetPath Include="..\distribution\windows\alsoft.ini" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'"> + <Content Include="..\distribution\windows\alsoft.ini" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> <TargetPath>alsoft.ini</TargetPath> - </ContentWithTargetPath> - <ContentWithTargetPath Include="..\distribution\legal\THIRDPARTY.md"> + </Content> + <Content Include="..\distribution\legal\THIRDPARTY.md"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> <TargetPath>THIRDPARTY.md</TargetPath> - </ContentWithTargetPath> + </Content> + <Content Include="..\LICENSE.txt"> + <CopyToOutputDirectory>Always</CopyToOutputDirectory> + <TargetPath>LICENSE.txt</TargetPath> + </Content> </ItemGroup> <!-- Due to .net core 3.1 embedded resource loading --> |