-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathElements.csproj
58 lines (49 loc) · 2.44 KB
/
Elements.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
53
54
55
56
57
58
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net472;netcoreapp2.1</TargetFrameworks>
<AssemblyName>Hypar.Elements</AssemblyName>
<PackageTitle>Hypar Elements</PackageTitle>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Title>Hypar Elements</Title>
<PackageId>Hypar.Elements</PackageId>
<PackageDescription>A building elements library for AEC.</PackageDescription>
<Summary>The Elements library provides object types for generating the built environment.</Summary>
<PackageProjectUrl>https://github.com/hypar-io/elements</PackageProjectUrl>
<RepositoryUrl>https://github.com/hypar-io/elements</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Version>$(Version)</Version>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0'">
<DefineConstants>NETCORE;NETSTANDARD;NETSTANDARD2_0</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1'">
<DefineConstants>NETCORE;NETSTANDARD;NETSTANDARD2_0</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net472'">
<DefineConstants>NET47;NETFRAMEWORK</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="glTF2Loader" Version="1.1.3-alpha" />
<PackageReference Include="Hypar.IFC4" Version="0.1.4.1" />
<PackageReference Include="Microsoft.CodeAnalysis" Version="3.3.1" />
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
<PackageReference Include="NJsonSchema.CodeGeneration" Version="10.1.8" />
<PackageReference Include="NJsonSchema.CodeGeneration.CSharp" Version="10.1.4" />
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.0-beta0007" />
<PackageReference Include="System.CodeDom" Version="4.6.0" />
<PackageReference Include="System.ComponentModel.Annotations" Version="4.6.0" />
<PackageReference Include="Unofficial.LibTessDotNet" Version="2.0.0" />
</ItemGroup>
<ItemGroup>
<Content Include="Templates\**\*.*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Textures\**\*.*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Update="UV.jpg" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>