-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathExample.Grasshopper.Tests.csproj
More file actions
33 lines (28 loc) · 1.14 KB
/
Example.Grasshopper.Tests.csproj
File metadata and controls
33 lines (28 loc) · 1.14 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net7.0-windows;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>10</LangVersion>
<RootNamespace>Example.Tests</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
<PackageReference Include="NUnit" Version="3.14.0" />
<PackageReference Include="Rhino.Testing" Version="9.0.7-beta" />
<PackageReference Include="RhinoCommon" Version="9.0.26097.12305-wip" Private="False" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="Grasshopper" Version="9.0.26097.12305-wip" Private="False" PrivateAssets="all" ExcludeAssets="runtime" />
</ItemGroup>
<ItemGroup>
<None Update="Rhino.Testing.Configs.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Scripts\CircleArea.gh">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="Scripts\" />
</ItemGroup>
</Project>