We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e7d254 commit fb6134aCopy full SHA for fb6134a
1 file changed
Tests/Connector/Reqnroll.VisualStudio.ReqnrollConnector.Tests/SampleProjectTestBase.cs
@@ -5,7 +5,11 @@ namespace Reqnroll.VisualStudio.ReqnrollConnector.Tests;
5
6
public abstract class SampleProjectTestBase
7
{
8
+#if DEBUG
9
private const string ConnectorConfiguration = "Debug";
10
+#else
11
+ private const string ConnectorConfiguration = "Release";
12
+#endif
13
private const string TargetFrameworkToBeUsedForNet4Projects = "net10.0";
14
private static readonly string LatestReqnrollVersion = NuGetPackageVersionDetector.DetectLatestPackage("Reqnroll", Console.WriteLine) ?? "1.0.0";
15
0 commit comments