forked from haf/expecto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExpecto.Template.fsproj
More file actions
46 lines (40 loc) · 1.68 KB
/
Copy pathExpecto.Template.fsproj
File metadata and controls
46 lines (40 loc) · 1.68 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<NoWarn>$(NoWarn);NU5128</NoWarn>
</PropertyGroup>
<PropertyGroup>
<!-- Package Properties -->
<PackageId>Expecto.Template</PackageId>
<PackageVersion>17.0.0</PackageVersion>
<Authors>Michał Niegrzybowski</Authors>
<Description>Expecto .NET Template</Description>
<PackageTags>.NET;Expecto;template</PackageTags>
<PackageProjectUrl>https://github.com/haf/Expecto/blob/main/Expecto.Template</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageType>Template</PackageType>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoDefaultExcludes>true</NoDefaultExcludes>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>
- Create the project in a new folder if -n is specified
- Bump default target framework to net10.0
</PackageReleaseNotes>
<!-- Template authoring guide: https://learn.microsoft.com/en-us/nuget/create-packages/package-authoring-best-practices -->
</PropertyGroup>
<PropertyGroup>
<LocalizeTemplates>false</LocalizeTemplates>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.TemplateEngine.Tasks" Version="*" PrivateAssets="all" IsImplicitlyDefined="true"/>
</ItemGroup>
<ItemGroup>
<Content Include="content\**\*" Exclude="content\**\bin\**;content\**\obj\**" />
<Compile Remove="**\*" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>