-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTimelineCreator.csproj
38 lines (32 loc) · 1 KB
/
TimelineCreator.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows7.0</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<Title>Timeline Creator</Title>
<Authors>Henry Hunt</Authors>
<Product>Timeline Creator</Product>
<Copyright>Copyright © Henry Hunt 2023</Copyright>
</PropertyGroup>
<ItemGroup>
<None Remove="FileSchema.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="FileSchema.json">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="NJsonSchema" Version="10.9.0" />
</ItemGroup>
<ItemGroup>
<Compile Update="Controls\TZeroTimeField.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Controls\NumericField.xaml.cs">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
</Project>