aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.Data/SerializeFixture.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-05-22 00:46:18 -0700
committerRob Mensching <rob@firegiant.com>2019-05-23 15:43:40 -0700
commit109ee5a02f9cec4775697b43655674fc70f4127a (patch)
tree08b34c00348dd8eb23bd35cd6ddb9d9feebb6cf2 /src/test/WixToolsetTest.Data/SerializeFixture.cs
parent54541ef517190f37d0625627b028834f0871a959 (diff)
downloadwix-109ee5a02f9cec4775697b43655674fc70f4127a.tar.gz
wix-109ee5a02f9cec4775697b43655674fc70f4127a.tar.bz2
wix-109ee5a02f9cec4775697b43655674fc70f4127a.zip
Obsolete obsolete constructor
Diffstat (limited to 'src/test/WixToolsetTest.Data/SerializeFixture.cs')
-rw-r--r--src/test/WixToolsetTest.Data/SerializeFixture.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/WixToolsetTest.Data/SerializeFixture.cs b/src/test/WixToolsetTest.Data/SerializeFixture.cs
index 856bcda7..335151cd 100644
--- a/src/test/WixToolsetTest.Data/SerializeFixture.cs
+++ b/src/test/WixToolsetTest.Data/SerializeFixture.cs
@@ -19,7 +19,7 @@ namespace WixToolsetTest.Data
19 19
20 var section = new IntermediateSection("test", SectionType.Product, 65001); 20 var section = new IntermediateSection("test", SectionType.Product, 65001);
21 21
22 section.Tuples.Add(new ComponentTuple(sln, new Identifier("TestComponent", AccessModifier.Public)) 22 section.Tuples.Add(new ComponentTuple(sln, new Identifier(AccessModifier.Public, "TestComponent"))
23 { 23 {
24 ComponentId = new Guid(1, 0, 0, new byte[8]).ToString("B"), 24 ComponentId = new Guid(1, 0, 0, new byte[8]).ToString("B"),
25 Directory_ = "TestFolder", 25 Directory_ = "TestFolder",
@@ -189,7 +189,7 @@ namespace WixToolsetTest.Data
189 189
190 var section = new IntermediateSection("test", SectionType.Product, 65001); 190 var section = new IntermediateSection("test", SectionType.Product, 65001);
191 191
192 section.Tuples.Add(new ComponentTuple(sln, new Identifier("TestComponent", AccessModifier.Public)) 192 section.Tuples.Add(new ComponentTuple(sln, new Identifier(AccessModifier.Public, "TestComponent"))
193 { 193 {
194 ComponentId = new Guid(1, 0, 0, new byte[8]).ToString("B"), 194 ComponentId = new Guid(1, 0, 0, new byte[8]).ToString("B"),
195 Directory_ = "TestFolder", 195 Directory_ = "TestFolder",