-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathGrimoire.csproj
45 lines (40 loc) · 1.7 KB
/
Grimoire.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
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>favicon.ico</ApplicationIcon>
<StartupObject>Grimoire.Program</StartupObject>
<Company>rzLabs Software</Company>
<Copyright>Copyright © 2022</Copyright>
<AssemblyVersion>0.5.1.6</AssemblyVersion>
<FileVersion>0.5.1.6</FileVersion>
<Version>0.5.1.6</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Be.Windows.Forms.HexBox" Version="1.6.1" />
<PackageReference Include="HIC.System.Windows.Forms.DataVisualization" Version="1.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="ObjectListView.Official" Version="2.9.1" />
<PackageReference Include="Serilog" Version="2.10.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.3" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Archimedes\Archimedes.csproj" />
<ProjectReference Include="..\..\DataCore\DataCore\DataCore.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Config.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Groups.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Links.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>