-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAgg.csproj
More file actions
30 lines (23 loc) · 983 Bytes
/
Agg.csproj
File metadata and controls
30 lines (23 loc) · 983 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Company>MatterHackers Inc.</Company>
</PropertyGroup>
<PropertyGroup Condition="'$(SolutionFileName)'=='MatterControlAndroid.sln'">
<DefineConstants>$(DefineConstants);__ANDROID__</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="System.Buffers" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Typography.One\Typography.One.csproj" />
<ProjectReference Include="..\VectorMath\VectorMath.csproj" />
</ItemGroup>
</Project>