mirror of
https://github.com/GreemDev/Ryujinx
synced 2024-12-22 03:46:39 +01:00
more testing
This commit is contained in:
parent
32ba604990
commit
1ef2a426bb
2 changed files with 3 additions and 10 deletions
|
@ -2,9 +2,8 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.0</TargetFramework>
|
||||
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
||||
<RuntimeIdentifiers>win-x64;linux-x64;linux-arm64;osx-x64;osx-arm64</RuntimeIdentifiers>
|
||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||
<IsPublish Condition="'$(IsPublish)' == ''">False</IsPublish>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@ -12,17 +11,10 @@
|
|||
<PackageReference Include="Newtonsoft.Json" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="SetIsPublish" BeforeTargets="BeforePublish">
|
||||
<PropertyGroup>
|
||||
<IsPublish Condition="'$(IsPublish)' != ''">True</IsPublish>
|
||||
</PropertyGroup>
|
||||
</Target>
|
||||
|
||||
<UsingTask TaskName="Ryujinx.BuildValidationTasks.LocaleValidationTask" TaskFactory="TaskHostFactory" AssemblyFile="$(OutDir)Ryujinx.BuildValidationTasks.dll" />
|
||||
|
||||
<Target Name="LocalesJsonValidation" AfterTargets="AfterBuild">
|
||||
<Message Text="IsPublish: $(IsPublish)" Importance="high"/>
|
||||
<LocaleValidationTask Condition="'$(IsPublish)' != 'True'"/>
|
||||
<LocaleValidationTask />
|
||||
</Target>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
</PropertyGroup>
|
||||
|
||||
<Target Name="BuildValidationProj" BeforeTargets="BeforeBuild">
|
||||
<Message Text="TEST" Importance="high"/>
|
||||
<MSBuild Projects="..\Ryujinx.BuildValidationTasks\Ryujinx.BuildValidationTasks.csproj" Targets="Build">
|
||||
</MSBuild>
|
||||
</Target>
|
||||
|
|
Loading…
Reference in a new issue