-
Notifications
You must be signed in to change notification settings - Fork 89
/
SAFE.Template.proj
51 lines (51 loc) · 2.18 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
48
49
50
51
<?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>
<PackageLicense>LICENSE</PackageLicense>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>safe-logo.png</PackageIcon>
<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>
<None Include="safe-logo.png" Pack="true" PackagePath=""/>
<None Include="README.md" Pack="true" PackagePath=""/>
<None Include="LICENSE" Pack="true" PackagePath=""/>
</ItemGroup>
<Import Project=".paket\Paket.Restore.targets" />
</Project>