Fixed issue #3 and changed the .NET Target to 4.5 instead of 4.5.1 since 4.5 is default in VS2015
Showing
3 changed files
with
9 additions
and
7 deletions
... | @@ -10,7 +10,7 @@ | ... | @@ -10,7 +10,7 @@ |
10 | <AppDesignerFolder>Properties</AppDesignerFolder> | 10 | <AppDesignerFolder>Properties</AppDesignerFolder> |
11 | <RootNamespace>LIL_VSTT_Plugins</RootNamespace> | 11 | <RootNamespace>LIL_VSTT_Plugins</RootNamespace> |
12 | <AssemblyName>LIL_VSTT_Plugins</AssemblyName> | 12 | <AssemblyName>LIL_VSTT_Plugins</AssemblyName> |
13 | <TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion> | 13 | <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> |
14 | <FileAlignment>512</FileAlignment> | 14 | <FileAlignment>512</FileAlignment> |
15 | <TargetFrameworkProfile /> | 15 | <TargetFrameworkProfile /> |
16 | </PropertyGroup> | 16 | </PropertyGroup> | ... | ... |
... | @@ -361,7 +361,7 @@ namespace LIL_VSTT_Plugins | ... | @@ -361,7 +361,7 @@ namespace LIL_VSTT_Plugins |
361 | if (myHasColName) allNames = myColNames.Split(','); else allNames = myParameterName.Split(','); | 361 | if (myHasColName) allNames = myColNames.Split(','); else allNames = myParameterName.Split(','); |
362 | for (int i = 0; i < numParams; i++) | 362 | for (int i = 0; i < numParams; i++) |
363 | { | 363 | { |
364 | e.TestContextProperties.Add(allNames[i], allParams[i]); | 364 | e.TestContextProperties[allNames[i]] = allParams[i]; |
365 | e.UserContext[allNames[i]] = allParams[i]; | 365 | e.UserContext[allNames[i]] = allParams[i]; |
366 | } | 366 | } |
367 | } | 367 | } | ... | ... |
... | @@ -11,7 +11,7 @@ | ... | @@ -11,7 +11,7 @@ |
11 | <AppDesignerFolder>Properties</AppDesignerFolder> | 11 | <AppDesignerFolder>Properties</AppDesignerFolder> |
12 | <RootNamespace>TestProject1</RootNamespace> | 12 | <RootNamespace>TestProject1</RootNamespace> |
13 | <AssemblyName>TestProject1</AssemblyName> | 13 | <AssemblyName>TestProject1</AssemblyName> |
14 | <TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion> | 14 | <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> |
15 | <FileAlignment>512</FileAlignment> | 15 | <FileAlignment>512</FileAlignment> |
16 | <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | 16 | <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> |
17 | <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion> | 17 | <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion> |
... | @@ -46,10 +46,6 @@ | ... | @@ -46,10 +46,6 @@ |
46 | <Prefer32Bit>false</Prefer32Bit> | 46 | <Prefer32Bit>false</Prefer32Bit> |
47 | </PropertyGroup> | 47 | </PropertyGroup> |
48 | <ItemGroup> | 48 | <ItemGroup> |
49 | <Reference Include="LIL_VSTT_Plugins, Version=1.3.0.0, Culture=neutral, processorArchitecture=MSIL"> | ||
50 | <HintPath>..\LIL_VSTT_Plugins\bin\Debug\LIL_VSTT_Plugins.dll</HintPath> | ||
51 | <SpecificVersion>False</SpecificVersion> | ||
52 | </Reference> | ||
53 | <Reference Include="Microsoft.VisualStudio.QualityTools.LoadTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | 49 | <Reference Include="Microsoft.VisualStudio.QualityTools.LoadTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> |
54 | <Private>False</Private> | 50 | <Private>False</Private> |
55 | </Reference> | 51 | </Reference> |
... | @@ -116,6 +112,12 @@ | ... | @@ -116,6 +112,12 @@ |
116 | <CopyToOutputDirectory>Always</CopyToOutputDirectory> | 112 | <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
117 | </None> | 113 | </None> |
118 | </ItemGroup> | 114 | </ItemGroup> |
115 | <ItemGroup> | ||
116 | <ProjectReference Include="..\LIL_VSTT_Plugins\LIL_VSTT_Plugins.csproj"> | ||
117 | <Project>{06a22593-601e-4386-917a-9835de30e14e}</Project> | ||
118 | <Name>LIL_VSTT_Plugins</Name> | ||
119 | </ProjectReference> | ||
120 | </ItemGroup> | ||
119 | <Choose> | 121 | <Choose> |
120 | <When Condition="'$(VisualStudioVersion)' == '10.0' And '$(IsCodedUITest)' == 'True'"> | 122 | <When Condition="'$(VisualStudioVersion)' == '10.0' And '$(IsCodedUITest)' == 'True'"> |
121 | <ItemGroup> | 123 | <ItemGroup> | ... | ... |
-
Please register or sign in to post a comment