-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathakka.websocket.NETFX.fsproj
More file actions
45 lines (40 loc) · 1.96 KB
/
Copy pathakka.websocket.NETFX.fsproj
File metadata and controls
45 lines (40 loc) · 1.96 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net472</TargetFrameworks>
<PackageId>FAkka.WebSocket</PackageId>
<Title>FAkka.WebSocket</Title>
<Authors>Akka.WebSocket contributors</Authors>
<Company />
<Description>Lightweight bridge that pushes WebSocket payloads into an Akka.NET actor system using Suave.</Description>
<PackageTags>akka;suave;websocket;fsharp</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/ingted/akka.websocket</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<None Include="PostBuildEvent.ps1" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<!--<PackageReference Include="Akka" Version="1.5.54" />
<PackageReference Include="Akka.Cluster" Version="1.5.54" />-->
<PackageReference Include="Suave" Version="2.5.6" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<Reference Include="MergedSB">
<HintPath>../DB2Query/DB2FQueryWrapper/Assemblies/MergedSB.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
<None Include="THIRD-PARTY-NOTICES.md" Pack="true" PackagePath="" />
<None Include="LICENSE" Pack="true" PackagePath="" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="Build" Condition="'$(Configuration)' == 'Release'">
<Exec Command="powershell -c "write-host '====== Start Post-Build Event ======'"
powershell .\PostBuildEvent.ps1 akka.websocket.NETFX.exe Release" />
</Target>
<Target Name="PostBuild" AfterTargets="Build" Condition="'$(Configuration)' == 'Debug'">
<Exec Command="powershell -c "write-host '====== Start Post-Build Event ======'"
powershell .\PostBuildEvent.ps1 akka.websocket.NETFX.exe Debug" />
</Target>
</Project>