-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathConsoleTest.csproj
More file actions
52 lines (46 loc) · 1.89 KB
/
ConsoleTest.csproj
File metadata and controls
52 lines (46 loc) · 1.89 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
41
42
43
44
45
46
47
48
49
50
51
52
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<SignAssembly>False</SignAssembly>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPublishable>False</IsPublishable>
<LangVersion>preview</LangVersion>
<EnablePreviewFeatures>True</EnablePreviewFeatures>
</PropertyGroup>
<PropertyGroup>
<NoWarn>
1701;1702;
0219;
8601;8602;8604;8607;8618;8625;8632;
8794
</NoWarn>
</PropertyGroup>
<ItemGroup>
<Using Include="MathCore" />
<Using Include="System" />
<Using Include="System.Diagnostics.DebuggerStepThroughAttribute" Alias="DST" />
<Using Include="System.Linq" />
<Using Include="System.Collections.Generic" />
<Using Include="System.Threading.Tasks" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.HighPerformance" Version="8.4.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.14.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.12" />
<PackageReference Include="System.Drawing.Common" Version="10.0.0" />
<PackageReference Include="System.IO.Hashing" Version="10.0.0" />
<PackageReference Include="System.IO.Pipelines" Version="10.0.0" />
<PackageReference Include="OxyPlot.Core.Drawing" Version="2.1.0" />
<PackageReference Include="OxyPlot.ImageSharp" Version="2.2.0" />
<PackageReference Include="System.Linq.Async" Version="6.0.3" />
<PackageReference Include="System.Text.Json" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\MathCore\MathCore.csproj" />
</ItemGroup>
</Project>