Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix where Deployment Item attribute was not deploying items. #237

Merged
merged 1 commit into from
Aug 8, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix where Deployment Item attribute was not deploying items.
  • Loading branch information
Khilan Goel committed Aug 8, 2017
commit ff981d2e13deb2b20bd4ebb64518d05d00addfeb
2 changes: 1 addition & 1 deletion src/Adapter/PlatformServices.Desktop/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 27,7 @@ internal class Constants

public const string PrivateAssemblies = "PrivateAssemblies";

public static readonly TestProperty DeploymentItemsProperty = TestProperty.Register("MSTestDiscoverer2.DeploymentItems", DeploymentItemsLabel, typeof(KeyValuePair<string, string>[]), TestPropertyAttributes.Hidden, typeof(TestCase));
public static readonly TestProperty DeploymentItemsProperty = TestProperty.Register("MSTestDiscoverer.DeploymentItems", DeploymentItemsLabel, typeof(KeyValuePair<string, string>[]), TestPropertyAttributes.Hidden, typeof(TestCase));

internal const string DllExtension = ".dll";
internal const string ExeExtension = ".exe";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 31,7 @@ namespace MSTestAdapter.PlatformServices.Desktop.UnitTests.Utilities
public class DeploymentItemUtilityTests
{
internal static readonly TestProperty DeploymentItemsProperty = TestProperty.Register(
"MSTestDiscoverer2.DeploymentItems",
"MSTestDiscoverer.DeploymentItems",
"DeploymentItems",
typeof(KeyValuePair<string, string>[]),
TestPropertyAttributes.Hidden,
Expand Down