-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathArcomage.csproj
21 lines (21 loc) · 1.28 KB
/
Arcomage.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Godot.NET.Sdk/4.3.0">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<InterfaceLocalization><![CDATA[https://docs.google.com/spreadsheets/d/e/2PACX-1vQypyad7a5Yp2Yv54YsFIbJJfxc02OduroayIK16Qt-pqiELdC1sq9v04VY8bANPsqajRV6SB9jTDqR/pub?gid=1374382602&single=true&output=csv]]></InterfaceLocalization>
<CardsLocalization><![CDATA[https://docs.google.com/spreadsheets/d/e/2PACX-1vQypyad7a5Yp2Yv54YsFIbJJfxc02OduroayIK16Qt-pqiELdC1sq9v04VY8bANPsqajRV6SB9jTDqR/pub?gid=885174373&single=true&output=csv]]></CardsLocalization>
<SourceRevisionId>build$([System.DateTime]::UtcNow.ToString("ddMMyyyyHHmmss"))</SourceRevisionId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Sprache" Version="2.3.1" />
<PackageReference Include="YamlDotNet" Version="16.1.2" />
</ItemGroup>
<PropertyGroup>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<Target Name="DownloadFilesBeforeBuild" BeforeTargets="Build">
<Exec Command="curl -L -o "$(MSBuildProjectDirectory)\Locales\Interface.csv" "$(InterfaceLocalization)"" />
<Exec Command="curl -L -o "$(MSBuildProjectDirectory)\Locales\Cards.csv" "$(CardsLocalization)"" />
</Target>
</Project>