Skip to content

Commit 74a66a6

Browse files
authored
Make the E2E tests packable.
Make the E2E tests packable so that NuGet packages can be created. I don't know what condition causes other project to be packable but not these test ones but explicitly set these two projects to be packable. Fixes #70
1 parent 239cf15 commit 74a66a6

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

src/Microsoft.Health.Fhir.Tests.Common/Microsoft.Health.Fhir.Tests.Common.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netcoreapp2.1</TargetFramework>
5+
<IsPackable>true</IsPackable>
56
<CodeAnalysisRuleSet>..\..\CustomAnalysisRules.Test.ruleset</CodeAnalysisRuleSet>
67
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
78
<WarningsAsErrors />

test/Microsoft.Health.Fhir.Tests.E2E/Microsoft.Health.Fhir.Tests.E2E.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netcoreapp2.1</TargetFramework>
5+
<IsPackable>true</IsPackable>
56
<CodeAnalysisRuleSet>..\..\CustomAnalysisRules.Test.ruleset</CodeAnalysisRuleSet>
67
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
78
<WarningsAsErrors />

0 commit comments

Comments
 (0)