20 lines
628 B
XML
20 lines
628 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Microsoft.Build.Utilities.Core" />
|
||
|
|
<PackageReference Include="Newtonsoft.Json" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<UsingTask TaskName="Ryujinx.BuildValidationTasks.LocaleValidationTask" TaskFactory="TaskHostFactory" AssemblyFile="$(OutDir)Ryujinx.BuildValidationTasks.dll" />
|
||
|
|
|
||
|
|
<Target Name="LocalesJsonValidation" AfterTargets="AfterRebuild">
|
||
|
|
<LocaleValidationTask />
|
||
|
|
</Target>
|
||
|
|
|
||
|
|
</Project>
|