-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSAFE.Client.fsproj
More file actions
35 lines (30 loc) · 1.51 KB
/
SAFE.Client.fsproj
File metadata and controls
35 lines (30 loc) · 1.51 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>SAFE</RootNamespace>
<Authors>Isaac Abraham</Authors>
<Copyright>Copyright (c) 2024 Compositional IT</Copyright>
<PackageVersion>5.0.0-beta5</PackageVersion>
<TargetFramework>net8.0</TargetFramework>
<PackageId>SAFE.Client</PackageId>
<DefineConstants>FABLE_COMPILER</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../../RELEASE-NOTES.txt"))</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/SAFE-Stack/SAFE.Meta</PackageProjectUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageIcon>safe-logo.png</PackageIcon>
<RepositoryUrl>https://github.com/SAFE-Stack/SAFE.Meta.git</RepositoryUrl>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="readme.md" Pack="true" PackagePath="" />
<None Include="../../LICENSE" Pack="true" PackagePath="" />
<None Include="../../safe-logo.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<Content Include="*.fsproj; **\*.fs; **\*.fsi" PackagePath="fable\" />
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>