-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fix error parsing platform and configuration
because they can be any value and should not be an enum Closes #21
- Loading branch information
Showing
7 changed files
with
84 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
namespace SlnParser.Contracts | ||
{ | ||
/// <summary> | ||
/// Common build-configuration defaults | ||
/// </summary> | ||
public static class BuildConfigurationDefaults | ||
{ | ||
/// <summary> | ||
/// The debug configuration | ||
/// </summary> | ||
public const string Debug = "Debug"; | ||
|
||
/// <summary> | ||
/// The release configuration | ||
/// </summary> | ||
public const string Release = "Release"; | ||
|
||
/// <summary> | ||
/// The default configuration | ||
/// </summary> | ||
public const string Default = "Default"; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
namespace SlnParser.Contracts | ||
{ | ||
/// <summary> | ||
/// Common build-platforms defaults | ||
/// </summary> | ||
public static class BuildPlatformDefaults | ||
{ | ||
/// <summary> | ||
/// Any CPU-platform is targeted | ||
/// </summary> | ||
public const string AnyCpu = "Any CPU"; | ||
|
||
/// <summary> | ||
/// Only x64 (64 bit) CPU-platforms are targeted | ||
/// </summary> | ||
public const string X64 = "x64"; | ||
|
||
/// <summary> | ||
/// Only x86 (32 bit) CPU-platforms are targeted | ||
/// </summary> | ||
public const string X86 = "x86"; | ||
|
||
/// <summary> | ||
/// There is a mix of different platforms that are targeted | ||
/// </summary> | ||
public const string MixedPlatforms = "Mixed Platforms"; | ||
|
||
/// <summary> | ||
/// Only Windows 32 platforms are targeted | ||
/// </summary> | ||
public const string Win32 = "Win32"; | ||
|
||
/// <summary> | ||
/// Only Windows 7 platforms are targeted | ||
/// </summary> | ||
public const string Win7 = "Win7"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters