-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy pathHandlebars.csproj
More file actions
62 lines (53 loc) · 2.68 KB
/
Handlebars.csproj
File metadata and controls
62 lines (53 loc) · 2.68 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>Handlebars</AssemblyName>
<ProjectGuid>9822C7B8-7E51-42BC-9A49-72A10491B202</ProjectGuid>
<TargetFrameworks>netstandard1.3;netstandard2.0;netstandard2.1;net6</TargetFrameworks>
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">$(TargetFrameworks);net451</TargetFrameworks>
<Version>2.0.0</Version>
<RootNamespace>HandlebarsDotNet</RootNamespace>
<SignAssembly Condition="'$(ShouldSignAssembly)' == 'true'">true</SignAssembly>
<Authors>Rex Morgan</Authors>
<Copyright>Copyright © 2014-2020 Rex Morgan</Copyright>
<Description>Blistering-fast Handlebars.js templates in your .NET application.</Description>
<PackageIcon>hbnet-icon.png</PackageIcon>
<PackageId>Handlebars.Net</PackageId>
<PackageProjectUrl>https://github.com/Handlebars-Net</PackageProjectUrl>
<PackageTags>handlebars;mustache;templating;engine;compiler</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Handlebars-Net/Handlebars.Net</RepositoryUrl>
<PackageReleaseNotes>https://github.com/Handlebars-Net/Handlebars.Net/releases/tag/$(Version)</PackageReleaseNotes>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<ItemGroup>
<Content Include="..\..\hbnet-icon.png">
<Visible>false</Visible>
<Pack>true</Pack>
<PackagePath>.</PackagePath>
</Content>
</ItemGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net451'">
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='netstandard1.3'">
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="System.ComponentModel.TypeConverter" Version="4.3.0" />
<PackageReference Include="System.Diagnostics.Contracts" Version="4.3.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net451'">
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0' or '$(TargetFramework)'=='netstandard2.1'">
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ExpressionShortcuts" Version="1.0.4.39" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
</Project>