-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
36 lines (30 loc) · 1.4 KB
/
Directory.Build.props
File metadata and controls
36 lines (30 loc) · 1.4 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
<!--
This file allows overriding of properties for all projects in the directory.
See
https://learn.microsoft.com/en-us/visualstudio/msbuild/customize-by-directory?view=vs-2022#directorybuildprops-and-directorybuildtargets
-->
<Project>
<ItemGroup>
<!-- Dotnet Watch to know about this file -->
<Watch Include="$(MSBuildThisFileFullPath)" />
</ItemGroup>
<!-- Package Info -->
<!-- https://learn.microsoft.com/en-us/nuget/reference/msbuild-targets#pack-target -->
<PropertyGroup>
<PackageTags>f#, fsharp</PackageTags>
<PackageProjectUrl>https://github.com/rmunn/Ficus</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile> <!--https://docs.microsoft.com/en-gb/nuget/reference/msbuild-targets#packagereadmefile -->
<Authors>rmunn</Authors>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/rmunn/Ficus</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="/" />
<None Include="$(MSBuildThisFileDirectory)LICENSE.md" Pack="true" PackagePath="/" />
</ItemGroup>
<PropertyGroup>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
</Project>