public void NoLogicalNameAddedForResx() { CreateCSharpManifestResourceName t = new CreateCSharpManifestResourceName(); t.BuildEngine = new MockEngine(); ITaskItem i = new TaskItem("strings.resx"); i.SetMetadata("Type", "Resx"); t.ResourceFiles = new ITaskItem[] { i }; t.RootNamespace = "ResourceRoot"; bool success = t.Execute(); Assert.True(success); // "Expected the task to succceed." ITaskItem[] resourceFiles = t.ResourceFilesWithManifestResourceNames; Assert.Equal(1, resourceFiles.Length); Assert.Equal(@"strings.resx", resourceFiles[0].ItemSpec); Assert.Equal(String.Empty, resourceFiles[0].GetMetadata("LogicalName")); }
public void PreserveLogicalNameForNonResx() { CreateCSharpManifestResourceName t = new CreateCSharpManifestResourceName(); t.BuildEngine = new MockEngine(); ITaskItem i = new TaskItem("pic.bmp"); i.SetMetadata("LogicalName", "foo"); i.SetMetadata("Type", "Non-Resx"); t.ResourceFiles = new ITaskItem[] { i }; t.RootNamespace = "ResourceRoot"; bool success = t.Execute(); Assert.True(success); // "Expected the task to succceed." ITaskItem[] resourceFiles = t.ResourceFilesWithManifestResourceNames; Assert.Equal(1, resourceFiles.Length); Assert.Equal(@"pic.bmp", resourceFiles[0].ItemSpec); Assert.Equal(@"foo", resourceFiles[0].GetMetadata("LogicalName")); }
public void Regress459265() { MockEngine m = new MockEngine(); CreateCSharpManifestResourceName c = new CreateCSharpManifestResourceName(); c.BuildEngine = m; string result = CreateCSharpManifestResourceName.CreateManifestNameImpl ( "MyForm.resx", null, true, "RootNamespace", // Root namespace (will be ignored because it's dependent) "MyForm.cs", null, StreamHelpers.StringToStream( @"using System; #if false namespace ClassLibrary1 #endif #if Debug namespace ClassLibrary2 #else namespace ClassLibrary3 #endif { class MyForm { } }" ), c.Log ); Assert.True( m.Log.Contains ( String.Format(AssemblyResources.GetString("CreateManifestResourceName.DefinitionFoundWithinConditionalDirective"), "MyForm.cs", "MyForm.resx") ) ); }
public void ResourceFilesWithManifestResourceNamesContainsAdditionalMetadata() { CreateCSharpManifestResourceName t = new CreateCSharpManifestResourceName(); t.BuildEngine = new MockEngine(); ITaskItem i = new TaskItem("strings.resx"); t.ResourceFiles = new ITaskItem[] { i }; t.RootNamespace = "ResourceRoot"; bool success = t.Execute(); Assert.True(success); // "Expected the task to succceed." ITaskItem[] resourceFiles = t.ResourceFilesWithManifestResourceNames; Assert.Equal(1, resourceFiles.Length); Assert.Equal(@"strings.resx", resourceFiles[0].ItemSpec); Assert.Equal(@"ResourceRoot.strings", resourceFiles[0].GetMetadata("ManifestResourceName")); }
public void Regress188319() { CreateCSharpManifestResourceName t = new CreateCSharpManifestResourceName(); t.BuildEngine = new MockEngine(); ITaskItem i = new TaskItem("SR1.resx"); i.SetMetadata("BuildAction", "EmbeddedResource"); i.SetMetadata("DependentUpon", "SR1.strings"); // Normally, this would be a C# file. t.ResourceFiles = new ITaskItem[] { i }; t.RootNamespace = "CustomToolTest"; bool success = t.Execute ( new Microsoft.Build.Tasks.CreateFileStream(CreateFileStream) ); Assert.True(success); // "Expected the task to succceed." ITaskItem[] resourceNames = t.ManifestResourceNames; Assert.Equal(1, resourceNames.Length); Assert.Equal(@"CustomToolTest.SR1", resourceNames[0].ItemSpec); }