-
Notifications
You must be signed in to change notification settings - Fork 24
/
Saturn.Template.proj
38 lines (38 loc) · 1.36 KB
/
Saturn.Template.proj
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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>`dotnet new` template for Saturn Framework</Description>
<Authors>Krzysztof Cieslak</Authors>
<PackageProjectUrl>https://github.com/SaturnFramework/Saturn.Template</PackageProjectUrl>
<License>MIT</License>
<RepositoryUrl>https://github.com/SaturnFramework/Saturn.Template.git</RepositoryUrl>
<PackageIcon>Saturn.png</PackageIcon>
<PackageTags>template;web;f#;MVC;Saturn;</PackageTags>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageType>Template</PackageType>
<NoBuild>true</NoBuild>
<NoDefaultExcludes>true</NoDefaultExcludes>
<IncludeBuildOutput>false</IncludeBuildOutput>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<ExcludeFromPackage>
Content/node_modules/**/*;
Content/packages/**/*;
Content/paket-files/**/*;
**/obj/**/*;
**/bin/**/*;
**/.fake/**/*;
**/.ionide/**/*;
</ExcludeFromPackage>
</PropertyGroup>
<ItemGroup>
<Content Include="Content/**/*" Exclude="$(ExcludeFromPackage)">
<PackagePath>Content\</PackagePath>
</Content>
</ItemGroup>
<ItemGroup>
<None Include="Saturn.png" Pack="true" PackagePath="\" />
</ItemGroup>
<Import Project=".paket\Paket.Restore.targets" />
</Project>