-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.runsettings
More file actions
15 lines (14 loc) · 795 Bytes
/
test.runsettings
File metadata and controls
15 lines (14 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="utf-8"?>
<RunSettings>
<!-- Source: https://docs.microsoft.com/en-us/visualstudio/test/configure-unit-tests-by-using-a-dot-runsettings-file?branch=release-16.4&view=vs-2019#example-runsettings-file -->
<!-- Configurations that affect the Test Framework -->
<RunConfiguration>
<TargetFrameworkVersion>net6.0</TargetFrameworkVersion>
<!-- Path relative to directory that contains .runsettings file-->
<ResultsDirectory>.\TestResults</ResultsDirectory>
<EnvironmentVariables>
<SDK_PATH>Some path</SDK_PATH>
<SQL_SERVER_CONNECTION_STRING>Data Source=localhost;Initial Catalog=HelloWorldKata;Integrated Security=True;MultipleActiveResultSets=True;</SQL_SERVER_CONNECTION_STRING>
</EnvironmentVariables>
</RunConfiguration>
</RunSettings>