forked from gradientspace/geometry3Sharp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
geometry3Sharp_netstandard.csproj
36 lines (31 loc) · 1.36 KB
/
geometry3Sharp_netstandard.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.0.0.0</Version>
<Title>geometry3Sharp</Title>
<Authors>Ryan Schmidt</Authors>
<Company>gradientspace</Company>
<Description>C# library for 2D/3D geometric computing and triangle mesh processing</Description>
<Copyright>Copyright © Ryan Schmidt 2016</Copyright>
<PackageLicenseUrl>https://github.com/gradientspace/geometry3Sharp/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/gradientspace/geometry3Sharp</PackageProjectUrl>
<PackageTags>geometry3;graphics;math;approximation;solvers;color;convexhull;meshes;spatial;curves;solids;3d;unity</PackageTags>
<RepositoryUrl>https://github.com/gradientspace/geometry3Sharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
<OutputType>Library</OutputType>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<RootNamespace>g3</RootNamespace>
<AssemblyName>geometry3Sharp</AssemblyName>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Product>geometry3Sharp</Product>
<PackageId>geometry3Sharp</PackageId>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>