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

Converted the projects to Visual Studio 2019 #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions NetMQ.Devices.sln
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
# Visual Studio 15
VisualStudioVersion = 15.0.28307.1500
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{338CCF4A-51D8-4183-96E9-6A2DE71CE50A}"
ProjectSection(SolutionItems) = preProject
global.json = global.json
EndProjectSection
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "NetMQ.Devices", "src\NetMQ.Devices\NetMQ.Devices.xproj", "{1654CA28-3B0C-4B5E-99EA-0A155B82875D}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetMQ.Devices", "src\NetMQ.Devices\NetMQ.Devices.csproj", "{1654CA28-3B0C-4B5E-99EA-0A155B82875D}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "NetMQ.Devices.Tests", "tests\NetMQ.Devices.Tests\NetMQ.Devices.Tests.xproj", "{B85D42AF-2233-402E-8630-5257485C1485}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetMQ.Devices.Tests", "tests\NetMQ.Devices.Tests\NetMQ.Devices.Tests.csproj", "{B85D42AF-2233-402E-8630-5257485C1485}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -30,4 +30,7 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {66151175-2901-48E3-856C-1557B01C0C32}
EndGlobalSection
EndGlobal
15 changes: 15 additions & 0 deletions src/NetMQ.Devices/NetMQ.Devices.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<DebugType>portable</DebugType>
<AssemblyName>NetMQ.Devices</AssemblyName>
<AssemblyOriginatorKeyFile>../../NetMQ.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<PackageId>NetMQ.Devices</PackageId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NetMQ" Version="4.0.1.6" />
<PackageReference Include="JetBrains.Annotations" Version="2021.1.0" />
</ItemGroup>
</Project>
19 changes: 0 additions & 19 deletions src/NetMQ.Devices/NetMQ.Devices.xproj

This file was deleted.

18 changes: 0 additions & 18 deletions src/NetMQ.Devices/project.json

This file was deleted.

20 changes: 20 additions & 0 deletions tests/NetMQ.Devices.Tests/NetMQ.Devices.Tests.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<DebugType>portable</DebugType>
<AssemblyName>NetMQ.Devices.Tests</AssemblyName>
<AssemblyOriginatorKeyFile>../../NetMQ.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<PackageId>NetMQ.Devices.Tests</PackageId>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\NetMQ.Devices\NetMQ.Devices.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
<PackageReference Include="NUnit" Version="3.13.1" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
</ItemGroup>
</Project>
19 changes: 0 additions & 19 deletions tests/NetMQ.Devices.Tests/NetMQ.Devices.Tests.xproj

This file was deleted.

24 changes: 0 additions & 24 deletions tests/NetMQ.Devices.Tests/project.json

This file was deleted.