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.csproj
More file actions
55 lines (53 loc) · 2.2 KB
/
Pretzel.csproj
File metadata and controls
55 lines (53 loc) · 2.2 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<GlobalTool>false</GlobalTool>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<OutputType>Exe</OutputType>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
<AssemblyTitle>Pretzel</AssemblyTitle>
<Company>Code52</Company>
<Authors>Code52</Authors>
<Product>Pretzel</Product>
<Description>A simple static site generator for Windows/Linux/MacOs</Description>
<OutputPath>bin\$(Configuration)\</OutputPath>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<ErrorLog>$(OutputPath)\static-analysis.sarif.json</ErrorLog>
<LangVersion>latest</LangVersion>
<DebugType>Full</DebugType>
<ApplicationIcon>pretzel.ico</ApplicationIcon>
<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="'$(GlobalTool)' != true">
<TargetFrameworks>net462;netcoreapp2.2</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Condition="'$(GlobalTool)' == true">
<PackAsTool>true</PackAsTool>
<ToolCommandName>pretzel</ToolCommandName>
<TargetFramework>netcoreapp2.2</TargetFramework>
<PackageOutputPath>../../artifacts</PackageOutputPath>
<PackageId>Pretzel.Tool</PackageId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SonarAnalyzer.CSharp" Version="7.16.0.8981">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="System.Runtime.Extensions" Version="4.3.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net462'">
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Web" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Pretzel.Logic\Pretzel.Logic.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="pretzel.ico" />
</ItemGroup>
</Project>