Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix commands and .NET-version in README #1331

Merged
merged 4 commits into from
Mar 25, 2021
Merged

Conversation

linderd
Copy link
Contributor

@linderd linderd commented Mar 19, 2021

the .NET-Version in README is outdated, the pathes for reference-server are not existing anymore, so I fixed this:

fix required .NET-Version to 3.1
fix dotnet restore command to be compatible to bash (add ' )
fix pathes of ReferenceServer (update NetCore to Console in path)

fix required .NET-Version to 3.1
fix dotnet restore command to be compatible to bash
fix pathes of ReferenceServer (delete NetCore from path)
@CLAassistant
Copy link

CLAassistant commented Mar 19, 2021

CLA assistant check
All committers have signed the CLA.

Copy link
Contributor

@AlinMoldovean AlinMoldovean left a comment

Choose a reason for hiding this comment

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

@linderd ,

.NET Core 2.1 is required for Visual Studio 2017 and 3.1 is required only for Visual Studio 2019
Could you adapt the text with this?

target.props contains:

<Project>
  <Choose>
    <When  Condition="'$(VisualStudioVersion)' == '16.0'">
      <PropertyGroup>
        <AppTargetFrameworks>net462;netcoreapp3.1</AppTargetFrameworks>
        <AppTargetFramework>netcoreapp3.1</AppTargetFramework>
        <TestsTargetFrameworks>net462;netcoreapp2.1;netcoreapp3.1</TestsTargetFrameworks>
        <LibTargetFrameworks>net462;netstandard2.0;netstandard2.1</LibTargetFrameworks>
        <LibxTargetFrameworks>net462;netcoreapp2.1;netstandard2.1</LibxTargetFrameworks>
      </PropertyGroup>
    </When>
    <Otherwise>
      <PropertyGroup>
        <AppTargetFrameworks>net462;netcoreapp2.1</AppTargetFrameworks>
        <AppTargetFramework>netcoreapp2.1</AppTargetFramework>
        <TestsTargetFrameworks>netcoreapp2.1</TestsTargetFrameworks>
        <LibTargetFrameworks>net462;netstandard2.0</LibTargetFrameworks>
        <LibxTargetFrameworks>net462;netcoreapp2.1</LibxTargetFrameworks>
      </PropertyGroup>
    </Otherwise>
  </Choose>
</Project>

add .NET-Core 2.1 for Visual Studio 2017
add .NET-Core 3.1 for Visual Studio 2019
@mregen mregen merged commit b3bc161 into OPCFoundation:master Mar 25, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants