This repository was archived by the owner on Jun 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTodo.fsproj
More file actions
40 lines (32 loc) · 1.23 KB
/
Todo.fsproj
File metadata and controls
40 lines (32 loc) · 1.23 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Folder Include="Models\" />
<AvaloniaResource Include="**\*.xaml">
<SubType>Designer</SubType>
</AvaloniaResource>
<AvaloniaResource Include="Assets\**" />
</ItemGroup>
<ItemGroup>
<Compile Include="Models\TodoItem.fs" />
<Compile Include="Services\Database.fs" />
<Compile Include="ViewModels/ViewModelBase.fs" />
<Compile Include="ViewLocator.fs" />
<Compile Include="ViewModels/AddItemViewModel.fs" />
<Compile Include="Views/AddItemView.xaml.fs" />
<Compile Include="ViewModels/TodoListViewModel.fs" />
<Compile Include="Views/TodoListView.xaml.fs" />
<Compile Include="ViewModels/MainWindowViewModel.fs" />
<Compile Include="Views/MainWindow.xaml.fs" />
<Compile Include="App.xaml.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="0.9.9" />
<PackageReference Include="Avalonia.Desktop" Version="0.9.9" />
<PackageReference Include="Avalonia.ReactiveUI" Version="0.9.9" />
</ItemGroup>
</Project>