-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathVespa.csproj
More file actions
52 lines (45 loc) · 2.12 KB
/
Vespa.csproj
File metadata and controls
52 lines (45 loc) · 2.12 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>
<!-- Select the framework(s) you wish to target.
Rhino 6: net45
Rhino 7: net48
Rhino 8 Windows: net48, net7.0, net7.0-windows, net7.0-windows10.0.22000.0, etc
Rhino 8 Mac: net7.0, net7.0-macos, net7.0-macos12.0, etc
-->
<TargetFrameworks>net7.0-windows;net7.0;net48</TargetFrameworks>
<EnableDynamicLoading>true</EnableDynamicLoading>
<TargetExt>.gha</TargetExt>
<NoWarn>NU1701;NETSDK1086</NoWarn>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<AssemblyName>Vespa</AssemblyName>
<RootNamespace>VespaCore</RootNamespace>
<Authors>Sustainable Urban Systems Lab</Authors>
</PropertyGroup>
<PropertyGroup>
<!-- Specifies information for Assembly and Yak -->
<Version>1.0</Version>
<Title>Vespa</Title>
<Company>Sustainable Urban Systems Lab</Company>
<Description></Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Grasshopper" Version="8.19.25132.1001" />
<PackageReference Include="Microsoft.ML.OnnxRuntime" Version="1.22.1" />
<PackageReference Include="RhinoCommon" Version="8.19.25132.1001" />
</ItemGroup>
<!-- For Windows only builds -->
<PropertyGroup Condition="$(TargetFramework.Contains('-windows')) or $(TargetFramework.StartsWith('net4'))">
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>
<!-- Reference WinForms for .NET 7.0 on macOS -->
<ItemGroup Condition="!($(TargetFramework.Contains('-windows')) or $(TargetFramework.StartsWith('net4')))">
<!-- Rhino 8.11 and later you can use this -->
<!-- <FrameworkReference Include="Microsoft.WindowsDesktop.App.WindowsForms" /> -->
<!-- Rhino 8.10 and earlier -->
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies.net48" Version="1.0.3" ExcludeAssets="all" GeneratePathProperty="true" />
<Reference Include="$(PkgMicrosoft_NETFramework_ReferenceAssemblies_net48)\build\.NETFramework\v4.8\System.Windows.Forms.dll" Private="False" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="System.Drawing.Common" Version="9.0.7" />
</ItemGroup>
</Project>