-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathHandlebars.Net.Helpers.Core.csproj
More file actions
37 lines (32 loc) · 1.72 KB
/
Handlebars.Net.Helpers.Core.csproj
File metadata and controls
37 lines (32 loc) · 1.72 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>HandlebarsDotNet.Helpers</RootNamespace>
<AssemblyName>HandlebarsDotNet.Helpers.Core</AssemblyName>
<Description>Core functionality for Handlebars.Net.Helpers</Description>
<PackageId>Handlebars.Net.Helpers.Core</PackageId>
<PackageTags>handlebars;helpers;extensions;core;models;interfaces;common</PackageTags>
<PackageTags>handlebars;helper;models;interfaces</PackageTags>
<ProjectGuid>{7CBD113C-A754-480B-B0D0-AA9DF734F612}</ProjectGuid>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>../Handlebars.Net.Helpers.snk</AssemblyOriginatorKeyFile>
<DefineConstants>$(DefineConstants);SIMPLE_JSON_INTERNAL</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Handlebars.Net" Version="2.1.4" />
<PackageReference Include="Nullable" Version="1.3.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Stef.Validation" Version="0.1.1" />
</ItemGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net451'">
<DefineConstants>$(DefineConstants);SIMPLE_JSON_DATACONTRACT;SIMPLE_JSON_DYNAMIC</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">
<DefineConstants>$(DefineConstants);SIMPLE_JSON_TYPEINFO</DefineConstants>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.7.0" />
<PackageReference Include="System.Runtime.Serialization.Primitives" Version="4.3.0" />
</ItemGroup>
</Project>