This repository was archived by the owner on Jun 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathPretzel.Logic.csproj
More file actions
120 lines (118 loc) · 5.39 KB
/
Pretzel.Logic.csproj
File metadata and controls
120 lines (118 loc) · 5.39 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ProductVersion>8.0.30703</ProductVersion>
<TargetFrameworks>net462;netstandard2.0</TargetFrameworks>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\src\</SolutionDir>
<AssemblyTitle>Pretzel.Logic</AssemblyTitle>
<Product>Pretzel.Logic</Product>
<Description>Logic library for Pretzel (https://github.com/code52/pretzel), useful to make plugins.</Description>
<Version>1.0.0.0</Version>
<OutputPath>bin\$(Configuration)\</OutputPath>
<ErrorLog>$(OutputPath)\static-analysis.sarif.json</ErrorLog>
<Authors>Code52</Authors>
<PackageIconUrl>https://cdn.rawgit.com/Code52/pretzel/master/pretzel.png</PackageIconUrl>
<PackageId>Pretzel.Logic</PackageId>
<PackageLicenseUrl>https://github.com/Code52/pretzel/blob/master/LICENSE.md</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/code52/pretzel</PackageProjectUrl>
<PackageReleaseNotes>https://github.com/Code52/pretzel/releases</PackageReleaseNotes>
<PackageTags>Pretzel, Jekyll, HTML, Markdown, Liquid, Razor, static</PackageTags>
<DebugType>Full</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
<DefineConstants>NETSTANDARD</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommonMark.NET" Version="0.15.1" />
<PackageReference Include="CsvHelper" Version="12.1.2" />
<PackageReference Include="dotless.Core" Version="1.6.7" />
<PackageReference Include="DotLiquid" Version="2.0.314" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.12" />
<PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.Extensions" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.Extensions" Version="2.2.0" />
<PackageReference Include="NUglify" Version="1.5.13" />
<PackageReference Include="RazorEngine.NetCore.Pretzel" Version="2.2.6" />
<PackageReference Include="SonarAnalyzer.CSharp" Version="7.16.0.8981">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="System.CommandLine.Experimental" Version="0.3.0-alpha.19405.1" />
<PackageReference Include="System.IO.Abstractions" Version="6.0.32" />
<PackageReference Include="YamlDotNet" Version="6.1.2" />
<PackageReference Include="System.Composition" Version="1.2.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Web" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\**\*.*">
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Liquid.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Liquid.resx</DependentUpon>
</Compile>
<Compile Update="Properties\Razor.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Razor.resx</DependentUpon>
</Compile>
<Compile Update="Properties\RazorAzure.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>RazorAzure.resx</DependentUpon>
</Compile>
<Compile Update="Properties\RazorCsProject.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>RazorCsProject.resx</DependentUpon>
</Compile>
<Compile Update="Properties\RazorWiki.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>RazorWiki.resx</DependentUpon>
</Compile>
<Compile Update="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Razor.resx">
<Generator>ResXFileCodeGenerator</Generator>
<SubType>Designer</SubType>
<LastGenOutput>Razor.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Properties\Liquid.resx">
<Generator>ResXFileCodeGenerator</Generator>
<SubType>Designer</SubType>
<LastGenOutput>Liquid.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Properties\RazorWiki.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>RazorWiki.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Compile Remove="VirtualDirectoryTransform.cs" />
<Compile Remove="Minification\AssetMinifier.cs" />
</ItemGroup>
</Project>