1 parent 21d522b commit 3977edfCopy full SHA for 3977edf
2 files changed
tests/CommandLine.Tests/CommandLine.Tests.csproj
@@ -59,6 +59,7 @@
59
</Compile>
60
<Compile Include="CultureInfoExtensions.cs" />
61
<Compile Include="Fakes\Options_With_Default_Set_To_Sequence.cs" />
62
+ <Compile Include="Fakes\Options_With_Guid.cs" />
63
<Compile Include="Fakes\Options_With_SetName_That_Ends_With_Previous_SetName.cs" />
64
<Compile Include="Fakes\Options_With_Uri_And_SimpleType.cs" />
65
<Compile Include="Fakes\Options_With_Switches.cs" />
tests/CommandLine.Tests/Fakes/Options_With_Guid.cs
@@ -0,0 +1,12 @@
1
+// Copyright 2005-2015 Giacomo Stelluti Scala & Contributors. All rights reserved. See License.md in the project root for license information.
2
+
3
+using System;
4
5
+namespace CommandLine.Tests.Fakes
6
+{
7
+ class Options_With_Guid
8
+ {
9
+ [Option]
10
+ public Guid TransactionId { get; set; }
11
+ }
12
+}
0 commit comments