forked from SAFE-Stack/SAFE-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SAFE.Template.proj
33 lines (33 loc) · 1.3 KB
/
SAFE.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>SAFE Stack Template</Description>
<Authors>Tomasz Heimowski</Authors>
<PackageProjectUrl>https://github.com/SAFE-Stack/SAFE-template</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/SAFE-Stack/SAFE-template/blob/master/LICENSE</PackageLicenseUrl>
<PackageIconUrl>https://raw.githubusercontent.com/SAFE-Stack/SAFE-template/master/safe-logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/SAFE-Stack/SAFE-template.git</RepositoryUrl>
<PackageTags>template;fsharp;saturn;azure;fable;elmish</PackageTags>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageType>Template</PackageType>
<NoBuild>true</NoBuild>
<IncludeBuildOutput>false</IncludeBuildOutput>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<ExcludeFromPackage>
**/.fable/**/*;
**/.fake/**/*;
**/obj/**/*;
**/bin/**/*;
**/packages/**/*;
**/paket-files/**/*;
**/node_modules/**/*;
**/src/Client/public/js/**/*;
</ExcludeFromPackage>
</PropertyGroup>
<ItemGroup>
<Content Include="Content/**/*" Exclude="$(ExcludeFromPackage)" >
<PackagePath>Content\</PackagePath>
</Content>
</ItemGroup>
</Project>