-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcsvtrans.fsproj
43 lines (39 loc) · 1.65 KB
/
csvtrans.fsproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
<Description>Tool for building translations from Google Sheet.</Description>
<VersionPrefix>1.6.0</VersionPrefix>
<Authors>Ricky Kaare Engelharth</Authors>
<Product>csvtrans</Product>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/rickykaare/csvtrans/blob/master/README.md</PackageProjectUrl>
<RepositoryUrl>https://github.com/rickykaare/csvtrans.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<DebugType>embedded</DebugType>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<TieredCompilation>true</TieredCompilation>
</PropertyGroup>
<ItemGroup>
<Compile Include="Model.fs" />
<Compile Include="Format.Android.fs" />
<Compile Include="Format.Apple.fs" />
<Compile Include="Format.Json.fs" />
<Compile Include="Format.Resx.fs" />
<Compile Include="Formats.fs" />
<Compile Include="Logic.fs" />
<Compile Include="IO.fs" />
<Compile Include="CliArguments.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Argu" Version="5.2.0" />
<PackageReference Include="FSharp.Data" Version="3.0.0" />
<PackageReference Include="Resx" Version="1.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
</ItemGroup>
</Project>