forked from jichang/Suave.Template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSuave.Template.proj
31 lines (31 loc) · 1.18 KB
/
Suave.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Suave Template</Description>
<Authors>Jacob Chang</Authors>
<PackageProjectUrl>https://github.com/SuaveIO/Suave.Template</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/SuaveIO/Suave.Template/blob/master/LICENSE.md</PackageLicenseUrl>
<RepositoryUrl>https://github.com/SuaveIO/Suave.Template.git</RepositoryUrl>
<PackageIconUrl>https://avatars0.githubusercontent.com/u/5822862?s=200</PackageIconUrl>
<PackageTags>template;web;f#;Suave;</PackageTags>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageType>Template</PackageType>
<NoBuild>true</NoBuild>
<IncludeBuildOutput>false</IncludeBuildOutput>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<ExcludeFromPackage>
Content/node_modules/**/*;
Content/packages/**/*;
Content/paket-files/**/*;
**/obj/**/*;
**/bin/**/*;
**/.fake/**/*;
</ExcludeFromPackage>
</PropertyGroup>
<ItemGroup>
<Content Include="Content/**/*" Exclude="$(ExcludeFromPackage)" >
<PackagePath>Content\</PackagePath>
</Content>
</ItemGroup>
</Project>