-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRunningLog.csproj
28 lines (24 loc) · 989 Bytes
/
RunningLog.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows</TargetFramework>
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<ApplicationIcon>running.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="running.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CliWrap" Version="3.6.*" />
<PackageReference Include="NLog" Version="5.3.*" />
<PackageReference Include="Samboy063.Tomlet" Version="5.4.*" />
<PackageReference Include="ScottPlot.WPF" Version="5.0.*" />
<PackageReference Include="SkiaSharp" Version="2.88.*" />
<PackageReference Include="SkiaSharp.Views.WPF" Version="2.88.*" />
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.*" />
<PackageReference Include="Dapper.Contrib" Version="2.0.*" />
</ItemGroup>
</Project>