Skip to content

Commit

Permalink
added xml documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
alexvaluyskiy committed Apr 8, 2017
1 parent 9abcb2a commit 0501e98
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 22 deletions.
6 changes: 3 additions & 3 deletions build.ps1
Expand Up @@ -29,12 +29,12 @@ Param(
[string[]]$ScriptArgs
)

$FakeVersion = "4.50.0"
$FakeVersion = "4.57.4"
$NUnitVersion = "3.6.0"
$DotNetChannel = "preview";
$DotNetVersion = "1.0.0-rc4-004771";
$DotNetVersion = "1.0.0";
$DotNetInstallerUri = "https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.ps1";
$NugetVersion = "3.5.0";
$NugetVersion = "4.1.0";
$NugetUrl = "https://dist.nuget.org/win-x86-commandline/v$NugetVersion/nuget.exe"

# Make sure tools folder exists
Expand Down
6 changes: 3 additions & 3 deletions build.sh
Expand Up @@ -7,10 +7,10 @@
SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
TOOLS_DIR=$SCRIPT_DIR/tools
NUGET_EXE=$TOOLS_DIR/nuget.exe
NUGET_URL=https://dist.nuget.org/win-x86-commandline/v3.5.0/nuget.exe
FAKE_VERSION=4.50.0
NUGET_URL=https://dist.nuget.org/win-x86-commandline/v4.1.0/nuget.exe
FAKE_VERSION=4.57.4
FAKE_EXE=$TOOLS_DIR/FAKE/tools/FAKE.exe
DOTNET_VERSION=1.0.0-rc4-004771
DOTNET_VERSION=1.0.0
DOTNET_INSTALLER_URL=https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.sh

# Define default arguments.
Expand Down
8 changes: 2 additions & 6 deletions src/api/Reactive.Streams/Reactive.Streams.csproj
Expand Up @@ -4,20 +4,16 @@
<AssemblyName>Reactive.Streams</AssemblyName>
<Description>Reactive Streams API</Description>
<Copyright>CC0 1.0 Universal</Copyright>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionPrefix>1.0.3</VersionPrefix>
<Authors>Reactive Streams</Authors>
<TargetFrameworks>netstandard1.0;net45</TargetFrameworks>
<PackageTags>reactive;stream</PackageTags>
<PackageProjectUrl>https://github.com/reactive-streams/reactive-streams-dotnet</PackageProjectUrl>
<PackageLicenseUrl>http://creativecommons.org/publicdomain/zero/1.0/</PackageLicenseUrl>
<NetStandardImplicitPackageVersion>1.6.0</NetStandardImplicitPackageVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
</PropertyGroup>
Expand Down
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<AssemblyName>Reactive.Streams.Example.Unicast</AssemblyName>
<TargetFrameworks>netstandard1.4;net45</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<ItemGroup>
Expand All @@ -13,11 +14,6 @@
<PackageReference Include="System.Diagnostics.TraceSource" Version="4.3.0" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
</PropertyGroup>
Expand Down
5 changes: 2 additions & 3 deletions src/tck/Reactive.Streams.TCK/Reactive.Streams.TCK.csproj
Expand Up @@ -4,12 +4,13 @@
<AssemblyName>Reactive.Streams.TCK</AssemblyName>
<Description>Reactive Streams Technology Compatibility Kit</Description>
<Copyright>CC0 1.0 Universal</Copyright>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionPrefix>1.0.3</VersionPrefix>
<Authors>Reactive Streams</Authors>
<TargetFrameworks>net45</TargetFrameworks>
<PackageTags>reactive;stream</PackageTags>
<PackageProjectUrl>https://github.com/reactive-streams/reactive-streams-dotnet</PackageProjectUrl>
<PackageLicenseUrl>http://creativecommons.org/publicdomain/zero/1.0/</PackageLicenseUrl>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<ItemGroup>
Expand All @@ -18,8 +19,6 @@
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
<PackageReference Include="NUnit" Version="3.6.1" />
</ItemGroup>

Expand Down
6 changes: 4 additions & 2 deletions src/tck/Reactive.Streams.TCK/Reactive.Streams.TCK.nuspec
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Reactive.Streams.TCK</id>
<version>1.0.0</version>
<version>1.0.3</version>
<authors>Reactive Streams</authors>
<owners>Reactive Streams</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand All @@ -13,13 +13,15 @@
<tags>reactive stream</tags>
<dependencies>
<group targetFramework=".NETFramework4.5">
<dependency id="Reactive.Streams" version="1.0.0" />
<dependency id="Reactive.Streams" version="1.0.3" />
<dependency id="NUnit" version="3.6.1" />
</group>
</dependencies>
</metadata>
<files>
<file src="bin\Release\net45\Reactive.Streams.Example.Unicast.dll" target="lib\net45" />
<file src="bin\Release\net45\Reactive.Streams.Example.Unicast.xml" target="lib\net45" />
<file src="bin\Release\net45\Reactive.Streams.TCK.dll" target="lib\net45" />
<file src="bin\Release\net45\Reactive.Streams.TCK.xml" target="lib\net45" />
</files>
</package>

2 comments on commit 0501e98

@Petabridge-CI
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity Reactive.Streams :: Pull Requests (Windows) Build 73 is now running

@Petabridge-CI
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TeamCity Reactive.Streams :: Pull Requests (Windows) Build 73 outcome was FAILURE
Summary: System.Exception: NUnit: cannot run tests (the assembly list is empty). at Fake.Testing.NUnit3.NUnit3(FSharpFunc2 setParams, IEnumerable1 assemblies) in C:\code\fake\src\app\FakeLib\UnitTest\NUnit\NUnit3.fs:line 276 at FSI_0005.Build.clo@64-9.I... Build time: 00:02:16

Please sign in to comment.