forked from SAFE-Stack/SAFE-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSAFE.Template.proj
47 lines (47 loc) · 1.77 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="utf-8"?>
<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>
<!-- https://github.com/dotnet/templating/issues/2350#issuecomment-610431461 -->
<NoDefaultExcludes>true</NoDefaultExcludes>
</PropertyGroup>
<PropertyGroup>
<ExcludeFromPackage>
Content/*/.fake/**/*;
Content/*/.ionide/**/*;
Content/*/.cache/**/*;
Content/*/.fable/**/*;
Content/*/node_modules/**/*;
Content/*/**/obj/**/*;
Content/*/**/bin/**/*;
Content/*/**/.fable/**/*;
Content/*/**/*.fs.js;
Content/*/**/*.fs.js.map;
Content/*/deploy/**/*;
Content/*/tests/**/obj/**/*;
Content/*/tests/**/bin/**/*;
Content/*/packages/**/*;
Content/*/paket-files/**/*;
Content/*/src/Client/deploy/**/*;
Content/*/*/Client/output/**/*;
Content/*/*/Client/fable_modules/**/*;
</ExcludeFromPackage>
</PropertyGroup>
<ItemGroup>
<Content Include="Content/**/*.*" Exclude="$(ExcludeFromPackage)">
<PackagePath>Content\</PackagePath>
</Content>
</ItemGroup>
<Import Project=".paket\Paket.Restore.targets" />
</Project>