266 references to XAttribute
BuildBoss (4)
InternalsVisibleTo.cs (4)
31element.Add(new XAttribute("Include", TargetAssembly)); 36element.Add(new XAttribute("Key", PublicKey)); 41element.Add(new XAttribute("LoadsWithinVisualStudio", LoadsWithinVisualStudio)); 46element.Add(new XAttribute("WorkItem", WorkItem));
dotnet-svcutil-lib (17)
Shared\MSBuildProj.cs (15)
144_packageReferenceGroup.Add(new XAttribute("Condition", $"'$(TargetFramework)' != '{netfxInfo.FullName}'")); 541this.ProjectReferceGroup.Add(new XElement("ProjectReference", new XAttribute("Include", dependency.FullPath))); 552this.ReferenceGroup.Add(new XElement("Reference", new XAttribute("Condition", $"'$(TargetFramework)' == '{netfxInfo.FullName}'"), new XAttribute("Include", dependency.AssemblyName), new XElement("HintPath", dependency.FullPath))); 557this.ReferenceGroup.Add(new XElement("Reference", new XAttribute("Include", dependency.AssemblyName), new XElement("HintPath", dependency.FullPath))); 561this.PacakgeReferenceGroup.Add(new XElement("PackageReference", new XAttribute("Include", dependency.Name), new XAttribute("Version", dependency.Version))); 564this.ReferenceGroup.Add(new XElement("DotNetCliToolReference", new XAttribute("Include", dependency.Name), new XAttribute("Version", dependency.Version))); 579new XAttribute("CopyToOutputDirectory", "always"), 580new XAttribute("Include", Path.Combine(basePath, $"{framework}\\**")), 581new XAttribute("Link", $"{framework}/%(RecursiveDir)%(Filename)%(Extension)"))); 589new XAttribute("CopyToOutputDirectory", "always"), 590new XAttribute("Include", $"{basePath}\\{framework}\\**"), 591new XAttribute("Link", $"{framework}/%(RecursiveDir)%(Filename)%(Extension)")));
Shared\Utilities\RuntimeEnvironmentHelper.cs (2)
101addElement.Add(new XAttribute("key", feedName), new XAttribute("value", packageFeed));
IIS.LongTests (4)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (4)
1411new XAttribute("protocol", "https"), 1412new XAttribute("bindingInformation", $":{sslPort}:localhost")), 1414new XAttribute("protocol", "https"), 1415new XAttribute("bindingInformation", $":{anotherSslPort}:localhost")));
IIS.NewHandler.FunctionalTests (4)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (4)
1411new XAttribute("protocol", "https"), 1412new XAttribute("bindingInformation", $":{sslPort}:localhost")), 1414new XAttribute("protocol", "https"), 1415new XAttribute("bindingInformation", $":{anotherSslPort}:localhost")));
IIS.NewShim.FunctionalTests (4)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (4)
1411new XAttribute("protocol", "https"), 1412new XAttribute("bindingInformation", $":{sslPort}:localhost")), 1414new XAttribute("protocol", "https"), 1415new XAttribute("bindingInformation", $":{anotherSslPort}:localhost")));
IISExpress.FunctionalTests (4)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (4)
1411new XAttribute("protocol", "https"), 1412new XAttribute("bindingInformation", $":{sslPort}:localhost")), 1414new XAttribute("protocol", "https"), 1415new XAttribute("bindingInformation", $":{anotherSslPort}:localhost")));
illink (4)
Microsoft.AspNetCore.App.Analyzers.Test (7)
RouteEmbeddedLanguage\RoutePatternParserTests.cs (7)
266new XAttribute("Name", parameter.Name), 267new XAttribute("IsCatchAll", parameter.IsCatchAll), 268new XAttribute("IsOptional", parameter.IsOptional), 269new XAttribute("EncodeSlashes", parameter.EncodeSlashes)); 272parameterElement.Add(new XAttribute("DefaultValue", parameter.DefaultValue)); 291=> new("Text", text.ToString(span)); 310element.Add(new XAttribute("value", token.Value));
Microsoft.AspNetCore.Authentication.Test (9)
CookieTests.cs (4)
1893xml.Add(result.Ticket.Principal.Claims.Select(claim => new XElement("claim", new XAttribute("type", claim.Type), new XAttribute("value", claim.Value)))); 1897xml.Add(result.Ticket.Properties.Items.Select(extra => new XElement("extra", new XAttribute("type", extra.Key), new XAttribute("value", extra.Value))));
TestExtensions.cs (5)
55new XElement("claim", new XAttribute("type", claim.Type), 56new XAttribute("value", claim.Value), 57new XAttribute("issuer", claim.Issuer)))); 73xml.Add(new XElement("token", new XAttribute("name", token.Name), 74new XAttribute("value", token.Value)));
Microsoft.AspNetCore.DataProtection (17)
AuthenticatedEncryption\ConfigurationModel\AuthenticatedEncryptorDescriptor.cs (2)
44new XAttribute("algorithm", Configuration.EncryptionAlgorithm)); 49new XAttribute("algorithm", Configuration.ValidationAlgorithm));
AuthenticatedEncryption\ConfigurationModel\CngCbcAuthenticatedEncryptorDescriptor.cs (3)
47new XAttribute("algorithm", Configuration.EncryptionAlgorithm), 48new XAttribute("keyLength", Configuration.EncryptionAlgorithmKeySize)); 55new XAttribute("algorithm", Configuration.HashAlgorithm));
AuthenticatedEncryption\ConfigurationModel\CngGcmAuthenticatedEncryptorDescriptor.cs (2)
46new XAttribute("algorithm", Configuration.EncryptionAlgorithm), 47new XAttribute("keyLength", Configuration.EncryptionAlgorithmKeySize));
AuthenticatedEncryption\ConfigurationModel\ManagedAuthenticatedEncryptorDescriptor.cs (3)
46new XAttribute("algorithm", ManagedAlgorithmHelpers.TypeToFriendlyName(Configuration.EncryptionAlgorithmType)), 47new XAttribute("keyLength", Configuration.EncryptionAlgorithmKeySize)); 50new XAttribute("algorithm", ManagedAlgorithmHelpers.TypeToFriendlyName(Configuration.ValidationAlgorithmType)));
KeyManagement\XmlKeyManager.cs (6)
388new XAttribute(VersionAttributeName, 1), 392new XAttribute(IdAttributeName, RevokeAllKeysValue)), 525new XAttribute(IdAttributeName, keyId), 526new XAttribute(VersionAttributeName, 1), 633new XAttribute(VersionAttributeName, 1), 636new XAttribute(IdAttributeName, keyId)),
XmlEncryption\XmlEncryptionExtensions.cs (1)
151new XAttribute(XmlConstants.DecryptorTypeAttributeName, entry.Value.DecryptorType.AssemblyQualifiedName!),
Microsoft.AspNetCore.Identity.InMemory.Test (4)
FunctionalTest.cs (4)
412xml.Add(result.Principal.Claims.Select(claim => new XElement("claim", new XAttribute("type", claim.Type), new XAttribute("value", claim.Value)))); 416xml.Add(result.Properties.Items.Select(extra => new XElement("extra", new XAttribute("type", extra.Key), new XAttribute("value", extra.Value))));
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (2)
XElementExtensions.cs (2)
38existing = new XElement(name, new XAttribute(attribute, attributeValue)); 47var innerElement = new XElement(name, new XAttribute(attribute, attributeValue));
Microsoft.Build.Tasks.Core (15)
AssemblyDependency\GenerateBindingRedirects.cs (9)
97new XAttribute("name", redirect.Key.Name), 98new XAttribute("publicKeyToken", ResolveAssemblyReference.ByteArrayToString(redirect.Key.GetPublicKeyToken())), 99new XAttribute("culture", String.IsNullOrEmpty(redirect.Key.CultureName) ? "neutral" : redirect.Key.CultureName)), 102new XAttribute("oldVersion", "0.0.0.0-" + redirect.Value), 103new XAttribute("newVersion", redirect.Value)))); 296new XAttribute("name", newName), 297new XAttribute( 300new XAttribute( 306attributes.Add(new XAttribute("processorArchitecture", newProcessorArchitecture.ToString()));
AssemblyDependency\ResolveAssemblyReference.cs (5)
1211assemblyIdentityAttributes.Add(new XAttribute("name", idealRemappingPartialAssemblyName.Name)); 1215assemblyIdentityAttributes.Add(new XAttribute("culture", String.IsNullOrEmpty(idealRemappingPartialAssemblyName.CultureName) ? "neutral" : idealRemappingPartialAssemblyName.CultureName)); 1218assemblyIdentityAttributes.Add(new XAttribute("publicKeyToken", ResolveAssemblyReference.ByteArrayToString(publicKeyToken))); 1229new XAttribute("oldVersion", "0.0.0.0-" + newVerStr), 1230new XAttribute("newVersion", newVerStr))));
CombineTargetFrameworkInfoProperties.cs (1)
49new("TargetFramework", new XAttribute("Name", EscapingUtilities.Escape(RootElementName))) :
Microsoft.Cci.Extensions (4)
Dgml\DgmlExtensions.cs (4)
42new XAttribute("Id", id), 43new XAttribute("Label", node)); 55new XAttribute("Source", source), 56new XAttribute("Target", target));
Microsoft.CodeAnalysis.CodeStyle (10)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\NamingStyles\NamingStyle.cs (6)
465new XAttribute(nameof(ID), ID), 466new XAttribute(nameof(Name), Name), 467new XAttribute(nameof(Prefix), Prefix ?? string.Empty), 468new XAttribute(nameof(Suffix), Suffix ?? string.Empty), 469new XAttribute(nameof(WordSeparator), WordSeparator ?? string.Empty), 470new XAttribute(nameof(CapitalizationScheme), CapitalizationScheme));
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\NamingStyles\Serialization\NamingStylePreferences.cs (1)
322new XAttribute("SerializationVersion", s_serializationVersion),
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\NamingStyles\Serialization\SerializableNamingRule.cs (3)
37new XAttribute(nameof(SymbolSpecificationID), SymbolSpecificationID), 38new XAttribute(nameof(NamingStyleID), NamingStyleID), 39new XAttribute(nameof(EnforcementLevel), EnforcementLevel.ToDiagnosticSeverity() ?? DiagnosticSeverity.Hidden));
Microsoft.CodeAnalysis.CSharp.EditorFeatures2.UnitTests (3)
EmbeddedLanguages\Json\CSharpJsonParserTests.cs (1)
206element.Add(new XAttribute("Message", d.Message));
EmbeddedLanguages\RegularExpressions\CSharpRegexParserTests.cs (2)
226=> new("Text", text.ToString(span)); 261element.Add(new XAttribute("value", token.Value));
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (2)
Symbols\Metadata\PE\LoadingNamespacesAndTypes.cs (2)
108elem.Add(new XAttribute("name", t.Name)); 112elem.Add(new XAttribute("arity", t.Arity));
Microsoft.CodeAnalysis.CSharp.Test.Utilities (5)
EmitMetadataTestBase.cs (5)
50elem.Add(new XAttribute("name", t.Name)); 66elem.Add(new XAttribute("Of", typeParams)); 71elem.Add(new XAttribute("base", t.BaseType().ToTestDisplayString())); 89elem.Add(new XAttribute("name", f.Name)); 90elem.Add(new XAttribute("type", f.Type.ToTestDisplayString()));
Microsoft.CodeAnalysis.Test.Utilities (14)
InstrumentationChecker.cs (1)
273public static readonly XElement InstrumentationHelperSource = new XElement("file", new XAttribute("name", "c.vb"), InstrumentationHelperSourceStr);
Syntax\XmlHelpers.cs (13)
51xml.Add(new XAttribute("Type", info.ClassName)); 124new XAttribute("IsToken", false), 125new XAttribute("IsTrivia", true), 126new XAttribute("Kind", node.GetKind()), 127new XAttribute("IsMissing", node.IsMissing)); 165new XAttribute("IsToken", false), 166new XAttribute("IsTrivia", true), 167new XAttribute("Kind", token.GetKind()), 168new XAttribute("IsMissing", token.IsMissing)); 218new XAttribute("IsToken", false), 219new XAttribute("IsTrivia", true), 220new XAttribute("Kind", trivia.GetKind()), 221new XAttribute("IsMissing", false));
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (2)
CodeGen\CodeGenWinMdDelegates.vb (1)
179fileElement.ReplaceAttributes(New XAttribute("name", "NonWinRTDelegateLibrary.vb"))
Emit\EmitMetadata.vb (1)
170elem.Add(New System.Xml.Linq.XAttribute("Of", typeParams))
Microsoft.CodeAnalysis.Workspaces (10)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\NamingStyles\NamingStyle.cs (6)
465new XAttribute(nameof(ID), ID), 466new XAttribute(nameof(Name), Name), 467new XAttribute(nameof(Prefix), Prefix ?? string.Empty), 468new XAttribute(nameof(Suffix), Suffix ?? string.Empty), 469new XAttribute(nameof(WordSeparator), WordSeparator ?? string.Empty), 470new XAttribute(nameof(CapitalizationScheme), CapitalizationScheme));
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\NamingStyles\Serialization\NamingStylePreferences.cs (1)
322new XAttribute("SerializationVersion", s_serializationVersion),
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\NamingStyles\Serialization\SerializableNamingRule.cs (3)
37new XAttribute(nameof(SymbolSpecificationID), SymbolSpecificationID), 38new XAttribute(nameof(NamingStyleID), NamingStyleID), 39new XAttribute(nameof(EnforcementLevel), EnforcementLevel.ToDiagnosticSeverity() ?? DiagnosticSeverity.Hidden));
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (14)
Workspaces\TestWorkspace_XmlCreation.cs (14)
92new XAttribute(AssemblyNameAttributeName, assemblyName), 93new XAttribute(LanguageAttributeName, language), 94commonReferences ? new XAttribute(CommonReferencesAttributeName, true) : null, 108return new XAttribute(LanguageVersionAttributeName, CodeAnalysis.CSharp.LanguageVersionFacts.ToDisplayString(csharpOptions.LanguageVersion)); 112return new XAttribute(LanguageVersionAttributeName, CodeAnalysis.VisualBasic.LanguageVersionFacts.ToDisplayString(vbOptions.LanguageVersion)); 128return new XAttribute(FeaturesAttributeName, value); 139return new XAttribute(DocumentationModeAttributeName, parseOptions.DocumentationMode); 193new XAttribute(FilePathAttributeName, filePath), 194new XAttribute(NormalizeAttributeName, false), 199element.Add(new XAttribute(FoldersAttributeName, folders)); 202element.Add(new XAttribute(MarkupAttributeName, isMarkup)); 210new XAttribute(FilePathAttributeName, hintName), 211new XAttribute(NormalizeAttributeName, false), 221new XAttribute(KindAttributeName, parseOptions.Kind));
Microsoft.DotNet.Arcade.Sdk (4)
src\SourceBuild\AddSourceMappingToNugetConfig.cs (2)
62var pkgSrc = new XElement("packageSource", new XAttribute("key", SourceName)); 65pkgSrc.Add(new XElement("package", new XAttribute("pattern", packagePattern)));
src\SourceBuild\AddSourceToNuGetConfig.cs (2)
45new XAttribute("key", SourceName), 46new XAttribute("value", SourcePath));
Microsoft.DotNet.Build.Tasks.Installers (8)
src\GenerateMacOSDistributionFile.cs (8)
66new XAttribute("id", component.GetMetadata("FileNameWithExtension")), 67new XAttribute("visible", "true"), 68new XAttribute("title", component.GetMetadata("Title")), 69new XAttribute("description", component.GetMetadata("Description")), 70new XElement("pkg-ref", new XAttribute("id", component.GetMetadata("FileNameWithExtension"))))); 87.Select(c => new XElement("line", new XAttribute("choice", c.Attribute("id").Value))); 91new XAttribute("id", component.GetMetadata("FileNameWithExtension")), 107optionsElement.Add(new XAttribute("hostArchitectures", hostArchitecture));
Microsoft.DotNet.Build.Tasks.VisualStudio (1)
Vsix\FinalizeInsertionVsixFile.cs (1)
103systemComponent = new XAttribute(systemComponentName, true);
Microsoft.DotNet.Build.Tasks.Workloads (8)
Msi\MsiPayloadPackageProject.wix.cs (3)
62new XAttribute("Include", packageFile.Key), 63new XAttribute("Pack", "true"), 64new XAttribute("PackagePath", packageFile.Value)));
Msi\WorkloadPackGroupMsi.wix.cs (5)
95componentGroupRefElement.ReplaceWith(Enumerable.Range(1, _package.Packs.Count).Select(n => new XElement(ns + "ComponentGroupRef", new XAttribute("Id", "CG_PackageContents" + n)))); 105registryKeyElement.Add(new XElement(ns + "RegistryKey", new XAttribute("Key", pack.Id), 106new XElement(ns + "RegistryKey", new XAttribute("Key", pack.PackageVersion), 107new XElement(ns + "RegistryValue", new XAttribute("Value", ""), new XAttribute("Type", "string")))));
Microsoft.DotNet.PackageTesting (10)
VerifyClosure.cs (10)
361new XAttribute("Source", assembly.Name), 362new XAttribute("Target", reference.Name))); 370new XAttribute("Source", assembly.Name), 371new XAttribute("Target", moduleReference))); 381new XAttribute("Id", "native"), 382new XAttribute("Background", "Blue") 386new XAttribute("Id", "managed"), 387new XAttribute("Background", "Green") 401new XAttribute("Id", id), 402new XAttribute("Category", isNative ? "native": "managed")));
Microsoft.DotNet.SharedFramework.Sdk (23)
src\CreateFrameworkListFile.cs (13)
64?.Select(item => new XAttribute(item.ItemSpec, item.GetMetadata("Value"))) 160new XAttribute("Type", type), 161new XAttribute("Path", path)); 165element.Add(new XAttribute("Language", analyzerLanguage)); 171new XAttribute("Culture", Path.GetFileName(Path.GetDirectoryName(path)))); 177element.Add(new XAttribute("DropFromSingleFile", "true")); 201new XAttribute("AssemblyName", f.AssemblyName.Name), 202new XAttribute("PublicKeyToken", publicKeyTokenHex), 203new XAttribute("AssemblyVersion", f.AssemblyName.Version)); 211element.Add(new XAttribute("FileVersion", f.FileVersion)); 221element.Add(new XAttribute("Profile", profile)); 228element.Add(new XAttribute("ReferencedByDefault", referencedByDefault)); 246element.Add(new XAttribute("DropFromSingleFile", "true"));
src\Microsoft.DotNet.PackageTesting\VerifyClosure.cs (10)
361new XAttribute("Source", assembly.Name), 362new XAttribute("Target", reference.Name))); 370new XAttribute("Source", assembly.Name), 371new XAttribute("Target", moduleReference))); 381new XAttribute("Id", "native"), 382new XAttribute("Background", "Blue") 386new XAttribute("Id", "managed"), 387new XAttribute("Background", "Green") 401new XAttribute("Id", id), 402new XAttribute("Category", isNative ? "native": "managed")));
Microsoft.DotNet.SourceBuild.Tasks (4)
src\UsageReport\XmlParsingHelpers.cs (4)
17new XAttribute("Id", ident.Id), 18new XAttribute("Version", ident.Version.OriginalVersion)); 21value == null ? null : new XAttribute(name, value); 24value == false ? null : new XAttribute(name, value);
Microsoft.DotNet.VersionTools (1)
BuildManifest\Model\XElementParsingExtensions.cs (1)
37.Select(pair => new XAttribute(pair.Key, pair.Value))
Microsoft.DotNet.XliffTasks (13)
Model\XElementExtensions.cs (3)
35targetElement = new XElement(Target, new XAttribute("state", "new")); 42targetElement.Add(new XAttribute("state", "new")); 76stateAttribute = new XAttribute("state", value);
Model\XlfDocument.cs (10)
50new XAttribute("xmlns", XliffNS.NamespaceName), 51new XAttribute(XNamespace.Xmlns + "xsi", XsiNS.NamespaceName), 52new XAttribute("version", "1.2"), 53new XAttribute(XsiNS + "schemaLocation", $"{XliffNS.NamespaceName} xliff-core-1.2-transitional.xsd"), 55new XAttribute("datatype", "xml"), 56new XAttribute("source-language", "en"), 57new XAttribute("target-language", targetLanguage), 58new XAttribute("original", "_"), // placeholder will be replaced on first update 189new XAttribute("id", sourceNode.Id), 191new XElement(Target, new XAttribute("state", "new"), sourceNode.Source),
Microsoft.DotNet.XliffTasks.Tests (2)
XElementExtensionsTests.cs (2)
85new XAttribute("state", "original state value"))); 121new XAttribute("state", "new"),
Microsoft.Extensions.FileProviders.Embedded.Tests (2)
Manifest\TestEntry.cs (2)
24new XElement("File", new XAttribute("Name", Name), new XElement("ResourcePath", ResourcePath)) : 25new XElement("Directory", new XAttribute("Name", Name), Children.Select(c => c.ToXElement()));
Microsoft.VisualStudio.LanguageServices (2)
Snippets\SnippetExpansionClient.cs (2)
690new XAttribute(snippetNamespace + "Format", "1.0.0"), 700new XAttribute(snippetNamespace + "Language", "csharp"),
System.Private.Xml.Linq (9)
System\Xml\Linq\XContainer.cs (4)
911e.AppendAttributeSkipNotify(new XAttribute(_aCache.Get(r.Prefix.Length == 0 ? string.Empty : r.NamespaceURI).GetName(r.LocalName), r.Value)); 965e.AppendAttributeSkipNotify(new XAttribute( 1033XAttribute a = new XAttribute(_aCache.Get(r.Prefix.Length == 0 ? string.Empty : r.NamespaceURI).GetName(r.LocalName), r.Value); 1147XAttribute a = new XAttribute(
System\Xml\Linq\XElement.cs (2)
1230AppendAttribute(new XAttribute(name, value)); 2071XAttribute a = new XAttribute(XNamespace.Get(r.Prefix.Length == 0 ? string.Empty : r.NamespaceURI).GetName(r.LocalName), r.Value);
System\Xml\Linq\XNodeBuilder.cs (1)
91XAttribute a = new XAttribute(_attrName!, _attrValue!);
System\Xml\Schema\XNodeValidator.cs (1)
288a = new XAttribute(XNamespace.Get(sa.QualifiedName.Namespace).GetName(sa.QualifiedName.Name), GetDefaultValue(sa)!);
System\Xml\XPath\XNodeNavigator.cs (1)
843System.Threading.Interlocked.CompareExchange(ref s_XmlNamespaceDeclaration, new XAttribute(XNamespace.Xmlns.GetName("xml"), xmlPrefixNamespace), null);
XmlFileLogger (19)
LogProcessNode.cs (1)
131propElement.Add(new XElement("Property", new XAttribute("Name", p.Key)) { Value = p.Value });
ObjectModel\Build.cs (5)
48new XAttribute("BuildSucceeded", buildFinishedEventArgs.Succeeded), 49new XAttribute("StartTime", StartTime), 50new XAttribute("EndTime", EndTime), 51new XAttribute("Errors", errorCount), 52new XAttribute("Warnings", warningCount));
ObjectModel\Item.cs (1)
76element.Add(new XAttribute(xmlAttributeName, Text));
ObjectModel\Message.cs (1)
36element.Add(new XElement("Message", new XAttribute("Timestamp", _timestamp), new XText(_message)));
ObjectModel\Project.cs (4)
99new XAttribute("Name", Name.Replace("\"", string.Empty)), 100new XAttribute("StartTime", StartTime), 101new XAttribute("EndTime", EndTime), 102new XAttribute("ProjectFile", _projectFile));
ObjectModel\Target.cs (3)
36new XAttribute("Name", Name), 37new XAttribute("StartTime", StartTime), 38new XAttribute("EndTime", EndTime));
ObjectModel\Task.cs (4)
50new XAttribute("Name", Name), 51new XAttribute("FromAssembly", _fromAssembly), 52new XAttribute("StartTime", StartTime), 53new XAttribute("EndTime", EndTime));
xunit.console (1)
ConsoleRunner.cs (1)
306assembliesElement.Add(new XAttribute("timestamp", DateTime.Now.ToString(CultureInfo.InvariantCulture)));