-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fable.VsCode.Extention.Template.proj
38 lines (38 loc) · 1.53 KB
/
Fable.VsCode.Extention.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Fable VsCode Extension</Description>
<Authors>SilkyFowl</Authors>
<PackageProjectUrl>https://github.com/SilkyFowl/atcoder-fsharp-templates</PackageProjectUrl>
<PackageLicense>https://github.com/SilkyFowl/atcoder-fsharp-templates/blob/master/LICENSE</PackageLicense>
<RepositoryUrl>https://github.com/SilkyFowl/atcoder-fsharp-templates.git</RepositoryUrl>
<PackageTags>fable;template;fsharp;vscode</PackageTags>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageType>Template</PackageType>
<Version>0.0.1</Version>
<PackProjectInputFile>$(MSBuildProjectFullPath)</PackProjectInputFile>
<NoBuild>true</NoBuild>
<IncludeBuildOutput>false</IncludeBuildOutput>
<TargetFramework>net6.0</TargetFramework>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
<NoDefaultExcludes>true</NoDefaultExcludes>
<NoWarn>$(NoWarn);NU5128</NoWarn>
</PropertyGroup>
<PropertyGroup>
<ExcludeFromPackage>
templates\**\.fable\**\*;
templates\**\.ionide\**\*;
templates\**\.paket\**\*;
templates\**\build\**\*;
templates\**\dist\**\*;
templates\**\node_modules\**\*;
templates\**\packages\**\*;
templates\**\paket-files\**\*;
templates\**\src\bin\**\*;
templates\**\src\obj\**\*;
</ExcludeFromPackage>
</PropertyGroup>
<ItemGroup>
<Content Include="templates/**/*" Exclude="$(ExcludeFromPackage)" >
</Content>
</ItemGroup>
</Project>