Skip to content

Commit

Permalink
Merge branch 'master' into stebon/master/CleanupAndUpdateDependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenBonikowsky committed Sep 17, 2018
2 parents da1f938 + 5881a4b commit 9ccf5a0
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 10 deletions.
12 changes: 6 additions & 6 deletions external/harvestPackages/harvestPackages.netstandard1.6.depproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@

<ItemGroup>
<PackageReference Include="System.Private.ServiceModel">
<Version>4.3.1</Version>
<Version>4.3.3</Version>
</PackageReference>
<PackageReference Include="System.ServiceModel.Duplex">
<Version>4.3.1</Version>
<Version>4.3.3</Version>
</PackageReference>
<PackageReference Include="System.ServiceModel.Http">
<Version>4.3.1</Version>
<Version>4.3.3</Version>
</PackageReference>
<PackageReference Include="System.ServiceModel.NetTcp">
<Version>4.3.1</Version>
<Version>4.3.3</Version>
</PackageReference>
<PackageReference Include="System.ServiceModel.Primitives">
<Version>4.3.1</Version>
<Version>4.3.3</Version>
</PackageReference>
<PackageReference Include="System.ServiceModel.Security">
<Version>4.3.1</Version>
<Version>4.3.3</Version>
</PackageReference>
</ItemGroup>

Expand Down
8 changes: 4 additions & 4 deletions pkg/baseline/packageIndex.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"4.0.1.0": "4.0.1",
//"4.0.1.0": "4.0.2",
"4.0.2.0": "4.3.0",
//"4.0.2.0": "4.3.1",
//"4.0.2.0": "4.3.1",
"4.0.2.1": "4.3.2",
"4.0.2.2": "4.3.3",
"4.1.0.0": "4.4.0",
Expand Down Expand Up @@ -117,7 +117,7 @@
"4.1.0.0": "4.1.0",
//"4.1.0.0": "4.1.1",
"4.1.1.0": "4.3.0",
//"4.1.1.0": "4.3.1",
//"4.1.1.0": "4.3.1",
"4.1.1.1": "4.3.2",
"4.1.1.2": "4.3.3",
"4.1.2.0": "4.4.0",
Expand Down Expand Up @@ -196,7 +196,7 @@
"4.1.0.0": "4.1.0",
//"4.1.0.0": "4.1.1",
"4.1.1.0": "4.3.0",
//"4.1.1.0": "4.3.1",
//"4.1.1.0": "4.3.1",
"4.1.1.1": "4.3.2",
"4.1.1.2": "4.3.3",
"4.2.0.0": "4.4.0",
Expand Down Expand Up @@ -237,7 +237,7 @@
"4.0.1.0": "4.0.1",
//"4.0.1.0": "4.0.2",
"4.0.2.0": "4.3.0",
//"4.0.2.0": "4.3.1",
//"4.0.2.0": "4.3.1",
"4.0.2.1": "4.3.2",
"4.0.2.2": "4.3.3",
"4.0.3.0": "4.4.0",
Expand Down
3 changes: 3 additions & 0 deletions release-notes/dotnet-svcutil-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ Getting Started instructions can be found in the [usage guide](https://go.micros

## Version History

### 1.0.3 (08/29/2018)
* Bug fixes ([#3081](https://github.com/dotnet/wcf/issues/3081), [#3103](https://github.com/dotnet/wcf/issues/3103))

### 1.0.2 (08/06/2018)
* Added debug verbosity option (--verbosity debug).
* Bug fixes ([#2848](https://github.com/dotnet/wcf/issues/2848), [#2591](https://github.com/dotnet/wcf/issues/2591), [#2765](https://github.com/dotnet/wcf/issues/2765))
Expand Down
6 changes: 6 additions & 0 deletions run.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ if not defined VisualStudioVersion (
:: misleading value (such as 'MCD' in HP PCs) may lead to build breakage (issue: #69).
set Platform=


:: Disable telemetry, first time experience, and global sdk look for the CLI
set DOTNET_CLI_TELEMETRY_OPTOUT=1
set DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
set DOTNET_MULTILEVEL_LOOKUP=0

:: Restore the Tools directory
call %~dp0init-tools.cmd
if NOT [%ERRORLEVEL%]==[0] exit /b 1
Expand Down
5 changes: 5 additions & 0 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

__scriptpath=$(cd "$(dirname "$0")"; pwd -P)

# Disable telemetry, first time experience, and global sdk look for the CLI
export DOTNET_CLI_TELEMETRY_OPTOUT=1
export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
export DOTNET_MULTILEVEL_LOOKUP=0

# Source the init-tools.sh script rather than execute in order to preserve ulimit values in child-processes. https://github.com/dotnet/corefx/issues/19152
. $__scriptpath/init-tools.sh

Expand Down

0 comments on commit 9ccf5a0

Please sign in to comment.