diff --git a/UnitTestProject1/Properties/AssemblyInfo.cs b/UnitTestProject1/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..b6f6cfb --- /dev/null +++ b/UnitTestProject1/Properties/AssemblyInfo.cs @@ -0,0 +1,20 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +[assembly: AssemblyTitle("UnitTestProject1")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("UnitTestProject1")] +[assembly: AssemblyCopyright("Copyright © 2017")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +[assembly: ComVisible(false)] + +[assembly: Guid("9208d143-150e-4e5e-bda7-dd669abc0aa6")] + +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/UnitTestProject1/UnitTest1.cs b/UnitTestProject1/UnitTest1.cs new file mode 100644 index 0000000..dbc289d --- /dev/null +++ b/UnitTestProject1/UnitTest1.cs @@ -0,0 +1,14 @@ +using System; +using Microsoft.VisualStudio.TestTools.UnitTesting; + +namespace UnitTestProject1 +{ + [TestClass] + public class UnitTest1 + { + [TestMethod] + public void TestMethod1() + { + } + } +} diff --git a/UnitTestProject1/UnitTestProject1.csproj b/UnitTestProject1/UnitTestProject1.csproj new file mode 100644 index 0000000..993186b --- /dev/null +++ b/UnitTestProject1/UnitTestProject1.csproj @@ -0,0 +1,67 @@ + + + + + Debug + AnyCPU + {9208D143-150E-4E5E-BDA7-DD669ABC0AA6} + Library + Properties + UnitTestProject1 + UnitTestProject1 + v4.5 + 512 + {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 15.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages + False + UnitTest + + + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + ..\packages\MSTest.TestFramework.1.1.18\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.dll + + + ..\packages\MSTest.TestFramework.1.1.18\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll + + + + + + + + + + + + + + + + This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + + + + \ No newline at end of file diff --git a/UnitTestProject1/packages.config b/UnitTestProject1/packages.config new file mode 100644 index 0000000..fc2bbdd --- /dev/null +++ b/UnitTestProject1/packages.config @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/net-sample.sln b/net-sample.sln index 06986e9..19613b4 100644 --- a/net-sample.sln +++ b/net-sample.sln @@ -5,6 +5,8 @@ VisualStudioVersion = 15.0.26730.3 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "net-sample", "net-sample\net-sample.csproj", "{D2FEA63D-E021-438F-BA6D-DD514D7B3A50}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTestProject1", "UnitTestProject1\UnitTestProject1.csproj", "{9208D143-150E-4E5E-BDA7-DD669ABC0AA6}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -15,6 +17,10 @@ Global {D2FEA63D-E021-438F-BA6D-DD514D7B3A50}.Debug|Any CPU.Build.0 = Debug|Any CPU {D2FEA63D-E021-438F-BA6D-DD514D7B3A50}.Release|Any CPU.ActiveCfg = Release|Any CPU {D2FEA63D-E021-438F-BA6D-DD514D7B3A50}.Release|Any CPU.Build.0 = Release|Any CPU + {9208D143-150E-4E5E-BDA7-DD669ABC0AA6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9208D143-150E-4E5E-BDA7-DD669ABC0AA6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9208D143-150E-4E5E-BDA7-DD669ABC0AA6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9208D143-150E-4E5E-BDA7-DD669ABC0AA6}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE