File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ let testOutput = "TestResults"
50
50
51
51
let nugetDir = binDir @@ " nuget"
52
52
let workingDir = binDir @@ " build"
53
- let libDir40 = workingDir @@ @" lib\net40 \"
53
+ let libDirPortable = workingDir @@ @" lib\portable-net45+netcore45 \"
54
54
let libDir45 = workingDir @@ @" lib\net45\"
55
55
let nugetExe = FullName @" src\.nuget\NuGet.exe"
56
56
let slnFile = " ./src/Reactive.Streams.sln"
@@ -239,7 +239,7 @@ let createNugetPackages _ =
239
239
nuspec
240
240
241
241
// Copy dll, pdb and xml to libdir = workingDir/lib/net4x/
242
- let libDir = if project.Contains " .TCK" then libDir45 else libDir40
242
+ let libDir = if project.Contains " .TCK" then libDir45 else libDirPortable
243
243
ensureDirectory libDir
244
244
!! ( releaseDir @@ project + " .dll" )
245
245
++ ( releaseDir @@ project + " .pdb" )
Original file line number Diff line number Diff line change 9
9
<AppDesignerFolder >Properties</AppDesignerFolder >
10
10
<RootNamespace >Reactive.Streams</RootNamespace >
11
11
<AssemblyName >Reactive.Streams</AssemblyName >
12
- <TargetFrameworkVersion >v4.0 </TargetFrameworkVersion >
12
+ <TargetFrameworkVersion >v4.5 </TargetFrameworkVersion >
13
13
<FileAlignment >512</FileAlignment >
14
14
<TargetFrameworkProfile />
15
15
</PropertyGroup >
21
21
<DefineConstants >DEBUG;TRACE</DefineConstants >
22
22
<ErrorReport >prompt</ErrorReport >
23
23
<WarningLevel >4</WarningLevel >
24
+ <Prefer32Bit >false</Prefer32Bit >
24
25
</PropertyGroup >
25
26
<PropertyGroup Condition =" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " >
26
27
<DebugType >pdbonly</DebugType >
29
30
<DefineConstants >TRACE</DefineConstants >
30
31
<ErrorReport >prompt</ErrorReport >
31
32
<WarningLevel >4</WarningLevel >
33
+ <Prefer32Bit >false</Prefer32Bit >
32
34
</PropertyGroup >
33
35
<ItemGroup >
34
36
<Reference Include =" System" />
You can’t perform that action at this time.
0 commit comments