-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdotnet-ws.fsproj
More file actions
38 lines (33 loc) · 1.33 KB
/
dotnet-ws.fsproj
File metadata and controls
38 lines (33 loc) · 1.33 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>dotnet_ws</RootNamespace>
<WarnOn>3390;$(WarnOn)</WarnOn>
<NoWarn>44</NoWarn>
<PackAsTool>true</PackAsTool>
<PackageType>DotnetTool</PackageType>
<ToolCommandName>dotnet-ws</ToolCommandName>
<Authors>IntelliFactory</Authors>
<PackageProjectUrl>https://github.com/dotnet-websharper/dotnet-ws</PackageProjectUrl>
<RepositoryUrl>https://github.com/dotnet-websharper/dotnet-ws</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<Description>Dotnet tool to manage WebSharper related projects</Description>
<EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>
</PropertyGroup>
<ItemGroup>
<None Include=".gitignore" />
<None Include="LICENSE.md" />
<None Include="README.md" />
<Compile Include="FileCompile.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Argu" Version="6.1.1" />
<PackageReference Include="Fake.Core.SemVer" Version="5.20.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="WebSharper.Compiler\WebSharper.Compiler.fsproj" />
</ItemGroup>
</Project>