-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBuildProject.fsproj
41 lines (40 loc) · 1.57 KB
/
BuildProject.fsproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageType>Template</PackageType>
<PackProjectInputFile>$(MSBuildProjectFullPath)</PackProjectInputFile>
<NoBuild>true</NoBuild>
<IncludeBuildOutput>false</IncludeBuildOutput>
<TargetFramework>net8.0</TargetFramework>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
</PropertyGroup>
<PropertyGroup>
<Title>BuildProject</Title>
<Authors>Kevin Schneider</Authors>
<Description>A template for scaffolding a modern build pipeline for your project using FAKE and .NET 6/7</Description>
<Summary>scaffold a FAKE + .net6/7/8 build project</Summary>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/kMutagene/BuildProject</PackageProjectUrl>
<PackageTags>build f#</PackageTags>
<RepositoryUrl>https://github.com/kMutagene/BuildProject</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageVersion>4.1.0</PackageVersion>
<PackageReleaseNotes>
- fix tfm parameter having no effect
</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup>
<ExcludeFromPackage>
Content/bin/**/*;
Content/obj/**/*;
</ExcludeFromPackage>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
<Content Include="Content/**/*" Exclude="$(ExcludeFromPackage)">
<PackagePath>Content\</PackagePath>
</Content>
</ItemGroup>
<ItemGroup />
</Project>