Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Products
/
VSTT-Plugins
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Issues
2
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
8f1ee766
...
8f1ee766ef7e38b0a53c26df709a6f08de50e9b3
authored
2016-09-21 13:22:10 +0200
by
Christian Gerdes
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fixed issue
#3
and changed the .NET Target to 4.5 instead of 4.5.1 since 4.5 is default in VS2015
1 parent
d545d6c7
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
7 deletions
LIL_VSTT_Plugins/LIL_VSTT_Plugins.csproj
LIL_VSTT_Plugins/LoadTestPlugins.cs
TestProject1/TestProject1.csproj
LIL_VSTT_Plugins/LIL_VSTT_Plugins.csproj
View file @
8f1ee76
...
...
@@ -10,7 +10,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>LIL_VSTT_Plugins</RootNamespace>
<AssemblyName>LIL_VSTT_Plugins</AssemblyName>
<TargetFrameworkVersion>v4.5
.1
</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
...
...
LIL_VSTT_Plugins/LoadTestPlugins.cs
View file @
8f1ee76
...
...
@@ -361,7 +361,7 @@ namespace LIL_VSTT_Plugins
if
(
myHasColName
)
allNames
=
myColNames
.
Split
(
','
);
else
allNames
=
myParameterName
.
Split
(
','
);
for
(
int
i
=
0
;
i
<
numParams
;
i
++)
{
e
.
TestContextProperties
.
Add
(
allNames
[
i
],
allParams
[
i
])
;
e
.
TestContextProperties
[
allNames
[
i
]]
=
allParams
[
i
]
;
e
.
UserContext
[
allNames
[
i
]]
=
allParams
[
i
];
}
}
...
...
TestProject1/TestProject1.csproj
View file @
8f1ee76
...
...
@@ -11,7 +11,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>TestProject1</RootNamespace>
<AssemblyName>TestProject1</AssemblyName>
<TargetFrameworkVersion>v4.5
.1
</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
...
...
@@ -46,10 +46,6 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="LIL_VSTT_Plugins, Version=1.3.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\LIL_VSTT_Plugins\bin\Debug\LIL_VSTT_Plugins.dll</HintPath>
<SpecificVersion>False</SpecificVersion>
</Reference>
<Reference Include="Microsoft.VisualStudio.QualityTools.LoadTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<Private>False</Private>
</Reference>
...
...
@@ -116,6 +112,12 @@
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LIL_VSTT_Plugins\LIL_VSTT_Plugins.csproj">
<Project>{06a22593-601e-4386-917a-9835de30e14e}</Project>
<Name>LIL_VSTT_Plugins</Name>
</ProjectReference>
</ItemGroup>
<Choose>
<When Condition="'$(VisualStudioVersion)' == '10.0' And '$(IsCodedUITest)' == 'True'">
<ItemGroup>
...
...
Please
register
or
sign in
to post a comment