Skip to content

Commit

Permalink
feat(project)
Browse files Browse the repository at this point in the history
add test project to solution
  • Loading branch information
igeligel committed Jul 14, 2016
1 parent 513b124 commit 90a5c17
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 0 deletions.
7 changes: 7 additions & 0 deletions skadiprices.csgofast.sln
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "skadiprices.csgofast", "src\skadiprices.csgofast\skadiprices.csgofast.xproj", "{645EFAFC-6D69-4AF9-AE5D-5CDD0A6EDAF2}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "skadiprices.csgofast.test", "src\skadiprices.csgofast.test\skadiprices.csgofast.test.xproj", "{44E08C66-9A87-47C7-94AA-7971B9CEF18A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -22,11 +24,16 @@ Global
{645EFAFC-6D69-4AF9-AE5D-5CDD0A6EDAF2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{645EFAFC-6D69-4AF9-AE5D-5CDD0A6EDAF2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{645EFAFC-6D69-4AF9-AE5D-5CDD0A6EDAF2}.Release|Any CPU.Build.0 = Release|Any CPU
{44E08C66-9A87-47C7-94AA-7971B9CEF18A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{44E08C66-9A87-47C7-94AA-7971B9CEF18A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{44E08C66-9A87-47C7-94AA-7971B9CEF18A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{44E08C66-9A87-47C7-94AA-7971B9CEF18A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{645EFAFC-6D69-4AF9-AE5D-5CDD0A6EDAF2} = {57F18E7C-CF59-4BEF-AD9C-C1867C7A74CD}
{44E08C66-9A87-47C7-94AA-7971B9CEF18A} = {57F18E7C-CF59-4BEF-AD9C-C1867C7A74CD}
EndGlobalSection
EndGlobal
19 changes: 19 additions & 0 deletions src/skadiprices.csgofast.test/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("skadiprices.csgofast.test")]
[assembly: AssemblyTrademark("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("44e08c66-9a87-47c7-94aa-7971b9cef18a")]
13 changes: 13 additions & 0 deletions src/skadiprices.csgofast.test/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"version": "1.0.0-*",

"dependencies": {
"NETStandard.Library": "1.6.0"
},

"frameworks": {
"netstandard1.6": {
"imports": "dnxcore50"
}
}
}
21 changes: 21 additions & 0 deletions src/skadiprices.csgofast.test/skadiprices.csgofast.test.xproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>

<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
<PropertyGroup Label="Globals">
<ProjectGuid>44e08c66-9a87-47c7-94aa-7971b9cef18a</ProjectGuid>
<RootNamespace>skadiprices.csgofast.test</RootNamespace>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
</PropertyGroup>

<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
</Project>

0 comments on commit 90a5c17

Please sign in to comment.