|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 |
|
3 | 3 | <PropertyGroup>
|
| 4 | + <OutputType>Library</OutputType> |
4 | 5 | <TargetFramework>netstandard2.0</TargetFramework>
|
5 | 6 | <PackageId>SqlStreamStore.FSharp</PackageId>
|
6 | 7 | <Authors>Jamil Maqdis Anton</Authors>
|
|
9 | 10 | <RepositoryUrl>https://github.com/jamil7/SQLStreamStore.FSharp</RepositoryUrl>
|
10 | 11 | <PackageLicenseExpression>MIT</PackageLicenseExpression>
|
11 | 12 | <PackageTags>SqlStreamStore; FSharp; postgresql; cqrs; event-sourcing; event-store; stream-store</PackageTags>
|
| 13 | + <OtherFlags>$(OtherFlags) --warnon:1182</OtherFlags> |
12 | 14 | </PropertyGroup>
|
13 | 15 |
|
14 | 16 | <ItemGroup>
|
15 |
| - <PackageReference Update="FSharp.Core" Version="5.0.0" /> |
16 |
| - <PackageReference Include="FSharp.Core" Version="5.0.0" /> |
17 |
| - <PackageReference Include="FSharp.Prelude" Version="4.0.3" /> |
18 |
| - <PackageReference Include="Npgsql" Version="5.0.4" /> |
19 |
| - <PackageReference Include="SqlStreamStore" Version="1.2.0-beta.8" /> |
| 17 | + <PackageReference Update="FSharp.Core" Version="5.0.0"/> |
| 18 | + <PackageReference Include="FSharp.Core" Version="5.0.0"/> |
| 19 | + <PackageReference Include="FSharp.Prelude" Version="4.0.*"/> |
| 20 | + <PackageReference Include="Npgsql" Version="5.0.*"/> |
| 21 | + <PackageReference Include="SqlStreamStore" Version="1.2.0-beta.8"/> |
20 | 22 | </ItemGroup>
|
21 | 23 |
|
22 | 24 | <ItemGroup>
|
23 |
| - <Compile Include="Extensions.fs" /> |
24 |
| - <Compile Include="NewStreamMessage.fs" /> |
25 |
| - <Compile Include="Connect.fs" /> |
26 |
| - <Compile Include="Read.fs" /> |
27 |
| - <Compile Include="Get.fs" /> |
28 |
| - <Compile Include="Subscribe.fs" /> |
29 |
| - <Folder Include="SqlStreamStore.FSharp" /> |
30 |
| - <Compile Include="Append.fs" /> |
31 |
| - <Compile Include="Create.fs" /> |
| 25 | + <Compile Include="Extensions.fs"/> |
| 26 | + <Compile Include="NewStreamMessage.fs"/> |
| 27 | + <Compile Include="Connect.fs"/> |
| 28 | + <Compile Include="Read.fs"/> |
| 29 | + <Compile Include="Get.fs"/> |
| 30 | + <Compile Include="Subscribe.fs"/> |
| 31 | + <Compile Include="Append.fs"/> |
| 32 | + <Compile Include="Create.fs"/> |
32 | 33 | </ItemGroup>
|
33 | 34 |
|
34 | 35 | </Project>
|
0 commit comments