-
Notifications
You must be signed in to change notification settings - Fork 0
/
Magnetostatics.csproj
50 lines (45 loc) · 1.74 KB
/
Magnetostatics.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
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Using Include="Magnetostatics" />
<Using Include="Magnetostatics.src.FEM" />
<Using Include="Magnetostatics.src.Spline" />
<Using Include="Magnetostatics.Mesh" />
<Using Include="Magnetostatics.Tests" />
<Using Include="Newtonsoft.Json" />
<Using Include="Newtonsoft.Json.Linq" />
<Using Include="System.Collections" />
<Using Include="System.Collections.Immutable" />
<Using Include="System.Numerics" />
<Using Include="System.Diagnostics" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3-beta1" />
<PackageReference Include="Throw" Version="1.3.1" />
</ItemGroup>
<ItemGroup>
<None Update="input\meshParameters">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="output\elements.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="output\points.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="input\boundaryParameters.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="output\q.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="input\mu(B)">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>