-
Notifications
You must be signed in to change notification settings - Fork 0
/
marmot.csproj
52 lines (46 loc) · 2.17 KB
/
marmot.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
51
52
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<Version>1.0</Version>
<Title>marmot</Title>
<Description>Description of marmot</Description>
<TargetExt>.gha</TargetExt>
<Configurations>Debug;Release;test</Configurations>
</PropertyGroup>
<ItemGroup>
<None Remove="Dissections\dissections_1_rooms.json" />
<None Remove="Dissections\dissections_2_rooms.json" />
<None Remove="Dissections\dissections_3_rooms.json" />
<None Remove="Dissections\dissections_4_rooms.json" />
<None Remove="Dissections\dissections_5_rooms.json" />
<None Remove="Dissections\dissections_6_rooms.json" />
<None Remove="Dissections\dissections_7_rooms.json" />
<None Remove="Icons\deGraph.png" />
<None Remove="Icons\graph.png" />
<None Remove="Icons\planMaker.png" />
<None Remove="Icons\planSettings.png" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Dissections\dissections_1_rooms.json" />
<EmbeddedResource Include="Dissections\dissections_2_rooms.json" />
<EmbeddedResource Include="Dissections\dissections_3_rooms.json" />
<EmbeddedResource Include="Dissections\dissections_4_rooms.json" />
<EmbeddedResource Include="Dissections\dissections_5_rooms.json" />
<EmbeddedResource Include="Dissections\dissections_6_rooms.json" />
<EmbeddedResource Include="Dissections\dissections_7_rooms.json" />
<EmbeddedResource Include="Icons\deGraph.png" />
<EmbeddedResource Include="Icons\graph.png" />
<EmbeddedResource Include="Icons\planMaker.png" />
<EmbeddedResource Include="Icons\planSettings.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Accord.Math" Version="3.8.0" />
<PackageReference Include="Grasshopper" Version="6.35.21222.17001" IncludeAssets="compile;build" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<PropertyGroup Condition="$(Configuration) == 'Debug' AND $([MSBuild]::IsOSPlatform(Windows))">
<StartProgram>C:\Program Files\Rhino 7\System\Rhino.exe</StartProgram>
<StartArguments></StartArguments>
<StartAction>Program</StartAction>
</PropertyGroup>
</Project>