-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fable.Template.Jest.proj
39 lines (35 loc) · 1.25 KB
/
Fable.Template.Jest.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- fill some nuget package props (optional) -->
<Description>Simple Fable Jest App</Description>
<Authors>Joe Grund</Authors>
<!-- fill nuget package version (optional) -->
<Version>0.0.4</Version>
<!-- this is a package -->
<PackageType>Template</PackageType>
<!-- cruft need to avoid building and making dotnet sdk happy -->
<PackProjectInputFile>$(MSBuildProjectFullPath)</PackProjectInputFile>
<NoBuild>true</NoBuild>
<IncludeBuildOutput>false</IncludeBuildOutput>
<TargetFramework>netstandard2.0</TargetFramework>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
</PropertyGroup>
<PropertyGroup>
<!-- simple way to exclude things (optional but nice) -->
<ExcludeFromPackage>
Content/node_modules/**/*;
Content/coverage/**/*;
Content/bin/**/*;
Content/obj/**/*;
Content/src/bin/**/*;
Content/src/obj/**/*;
Content/test/bin/**/*;
Content/test/obj/**/*;
</ExcludeFromPackage>
</PropertyGroup>
<ItemGroup>
<Content Include="Content/**/*" Exclude="$(ExcludeFromPackage)" >
<PackagePath>Content\</PackagePath>
</Content>
</ItemGroup>
</Project>