-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcitynames.csproj
More file actions
30 lines (25 loc) · 806 Bytes
/
Copy pathcitynames.csproj
File metadata and controls
30 lines (25 loc) · 806 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="TestResults\**" />
<Compile Remove="tests\**" />
<EmbeddedResource Remove="TestResults\**" />
<EmbeddedResource Remove="tests\**" />
<None Remove="TestResults\**" />
<None Remove="tests\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MathNet.Numerics" Version="5.0.0" />
<PackageReference Include="Microsoft.ML" Version="3.0.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="utl">
<HintPath>..\utl\bin\Release\net7.0\utl.dll</HintPath>
</Reference>
</ItemGroup>
</Project>