Skip to content

Commit 9fb05cb

Browse files
committed
Update project output type and launch settings
- Set `<OutputType>` to `Exe` in `Measures.Demo.csproj` to configure the project for executable output. - Updated `commandLineArgs` in `launchSettings.json` to reference library versions of components by prefixing with "Library-".
1 parent 5298596 commit 9fb05cb

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Demo/Measures.Demo/Measures.Demo.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<ElmDirectory>$(LibrarySetRoot)/Elm</ElmDirectory>
2121
<ResourcesDirectory>$(LibrarySetRoot)/Resources</ResourcesDirectory>
2222
<TestResultsDirectory>$(MSBuildProjectDirectory)/input/tests/results</TestResultsDirectory>
23+
<OutputType>Exe</OutputType>
2324
</PropertyGroup>
2425

2526
<Import Project="../Cql/Build/CqlToElm.Targets.xml" />

Demo/Measures.Demo/Properties/launchSettings.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
"profiles": {
33
"BCSEHEDISMY2022-1.0.0": {
44
"commandName": "Project",
5-
"commandLineArgs": "--l BCSEHEDISMY2022-1.0.0"
5+
"commandLineArgs": "--l Library-BCSEHEDISMY2022-1.0.0"
66
},
77
"AdultOutpatientEncountersFHIR4-2.2.000": {
88
"commandName": "Project",
9-
"commandLineArgs": "--l AdultOutpatientEncountersFHIR4-2.2.000"
9+
"commandLineArgs": "--l Library-AdultOutpatientEncountersFHIR4-2.2.000"
1010
},
1111
"ColorectalCancerScreeningsFHIR-0.0.003": {
1212
"commandName": "Project",
13-
"commandLineArgs": "--l ColorectalCancerScreeningsFHIR-0.0.003"
13+
"commandLineArgs": "--l Library-ColorectalCancerScreeningsFHIR-0.0.003"
1414
}
1515
}
1616
}

0 commit comments

Comments
 (0)