From c961105f14d207d4e9bbc4a184ca0969b30e6e02 Mon Sep 17 00:00:00 2001 From: Matt Osborne Date: Mon, 10 Aug 2015 17:52:02 -0500 Subject: [PATCH] Added Visual Studio and Nuget Support Created Visual Studio compatible solution and project. Also added support for fetching Mono.Posix from Nuget to keep things up to date. --- .gitignore | 10 ++ .../{Core => Properties}/AssemblyInfo.cs | 0 library/v4l-net/packages.config | 4 + library/v4l-net/v4l-net.csproj | 135 ++++++++++++++++++ library/v4l-net/v4l-net.sln | 22 +++ 5 files changed, 171 insertions(+) create mode 100644 .gitignore rename library/v4l-net/{Core => Properties}/AssemblyInfo.cs (100%) create mode 100644 library/v4l-net/packages.config create mode 100644 library/v4l-net/v4l-net.csproj create mode 100644 library/v4l-net/v4l-net.sln diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..dfdc47d --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +# Solution and project user files +*.suo +*.*proj.user + +# Ignore Nuget Packages +library/v4l-net/packages/* + +# Binary Output +library/**/obj/* +library/**/bin/* diff --git a/library/v4l-net/Core/AssemblyInfo.cs b/library/v4l-net/Properties/AssemblyInfo.cs similarity index 100% rename from library/v4l-net/Core/AssemblyInfo.cs rename to library/v4l-net/Properties/AssemblyInfo.cs diff --git a/library/v4l-net/packages.config b/library/v4l-net/packages.config new file mode 100644 index 0000000..0b385f1 --- /dev/null +++ b/library/v4l-net/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/library/v4l-net/v4l-net.csproj b/library/v4l-net/v4l-net.csproj new file mode 100644 index 0000000..c12961b --- /dev/null +++ b/library/v4l-net/v4l-net.csproj @@ -0,0 +1,135 @@ + + + + + Debug + AnyCPU + {270C49A5-7A89-46EC-B3FF-178BE7AF7C56} + Library + Properties + v4l_net + v4l-net + v4.5.2 + 512 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + true + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + packages\Mono.Posix.4.0.0.0\lib\net40\Mono.Posix.dll + True + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/library/v4l-net/v4l-net.sln b/library/v4l-net/v4l-net.sln new file mode 100644 index 0000000..5583817 --- /dev/null +++ b/library/v4l-net/v4l-net.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.23107.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "v4l-net", "v4l-net.csproj", "{270C49A5-7A89-46EC-B3FF-178BE7AF7C56}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {270C49A5-7A89-46EC-B3FF-178BE7AF7C56}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {270C49A5-7A89-46EC-B3FF-178BE7AF7C56}.Debug|Any CPU.Build.0 = Debug|Any CPU + {270C49A5-7A89-46EC-B3FF-178BE7AF7C56}.Release|Any CPU.ActiveCfg = Release|Any CPU + {270C49A5-7A89-46EC-B3FF-178BE7AF7C56}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal