-
Notifications
You must be signed in to change notification settings - Fork 0
/
WunderlistBackup.fsproj
56 lines (56 loc) · 2.05 KB
/
WunderlistBackup.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
44
45
46
47
48
49
50
51
52
53
54
55
56
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Json.fs" />
<Compile Include="MaybeBuilder.fs" />
<Compile Include="Http.fs" />
<Compile Include="Models.fs" />
<Compile Include="HexString.fs" />
<Compile Include="Credentials.fs" />
<Compile Include="Requests.fs" />
<Compile Include="BackUp.fs" />
<Compile Include="PrettyPrinter.fs" />
<Compile Include="Wunderlist.fs" />
<Compile Include="FileDownload.fs" />
<Compile Include="Serialization.fs" />
<Compile Include="CommandLine.fs" />
<Compile Include="Save.fs" />
<Compile Include="View.fs" />
<Compile Include="ParseArguments.fs" />
<Compile Include="Actions.fs" />
<Compile Include="CommandLineActions.fs" />
<Compile Include="ActionsComposition.fs" />
<Compile Include="Program.fs" />
<Content Include="FilesJsonSample.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="NotesJsonSample.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="FoldersJsonSample.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="ListsJsonSample.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="SubtasksJsonSample.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="TasksJsonSample.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="FSharp.Data" Version="2.4.6" />
<PackageReference Include="LiteDB" Version="4.1.4" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="4.5.2" />
</ItemGroup>
</Project>