Skip to content

Commit

Permalink
Update project files to include the CommandLine package
Browse files Browse the repository at this point in the history
  • Loading branch information
brianpos committed Feb 3, 2018
1 parent b9b67e8 commit 75ecf95
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
15 changes: 11 additions & 4 deletions FhirResourceScanner/FhirResourceScanner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<ApplicationIcon />
<StartupObject />
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.2.1" />
<PackageReference Include="Hl7.Fhir.DSTU2" Version="0.94.0" />
<PackageReference Include="Hl7.Fhir.R4" Version="0.94.0-beta3" />
<PackageReference Include="Hl7.Fhir.Specification.STU3" Version="0.94.0" />
Expand All @@ -16,18 +19,22 @@
<ProjectReference Include="..\ResourceScanner\ResourceScanner.csproj" />
</ItemGroup>

<PropertyGroup>
<RuntimeIdentifiers>win10-x64;osx.10.11-x64</RuntimeIdentifiers>
<Authors>Brian Postlethwaite</Authors>
<Company />
<Description>Scan over input files (or web resources) to process the usage of the properties in the core FHIR resources.</Description>
<Version>1.0.1</Version>
</PropertyGroup>

<Target Name="ChangeAliasesOfStrongNameAssemblies" BeforeTargets="FindReferenceAssembliesForReferences;ResolveReferences">
<ItemGroup>
<ReferencePath Condition="'%(FileName)' == 'Hl7.Fhir.DSTU2.Core'">
<Aliases>dstu2</Aliases>
</ReferencePath>
</ItemGroup>
<ItemGroup>
<ReferencePath Condition="'%(FileName)' == 'Hl7.Fhir.STU3.Core'">
<Aliases>stu3</Aliases>
</ReferencePath>
</ItemGroup>
<ItemGroup>
<ReferencePath Condition="'%(FileName)' == 'Hl7.Fhir.R4.Core'">
<Aliases>r4</Aliases>
</ReferencePath>
Expand Down
6 changes: 2 additions & 4 deletions ResourceScanner.Test/ResourceScanner.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.2.1" />
<PackageReference Include="Hl7.Fhir.DSTU2" Version="0.94.0" />
<PackageReference Include="Hl7.Fhir.R4" Version="0.94.0-beta3" />
<PackageReference Include="Hl7.Fhir.Specification.STU3" Version="0.94.0" />
Expand All @@ -17,6 +18,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\FhirResourceScanner\FhirResourceScanner.csproj" />
<ProjectReference Include="..\ResourceScanner\ResourceScanner.csproj" />
</ItemGroup>

Expand All @@ -25,13 +27,9 @@
<ReferencePath Condition="'%(FileName)' == 'Hl7.Fhir.DSTU2.Core'">
<Aliases>dstu2</Aliases>
</ReferencePath>
</ItemGroup>
<ItemGroup>
<ReferencePath Condition="'%(FileName)' == 'Hl7.Fhir.STU3.Core'">
<Aliases>stu3</Aliases>
</ReferencePath>
</ItemGroup>
<ItemGroup>
<ReferencePath Condition="'%(FileName)' == 'Hl7.Fhir.R4.Core'">
<Aliases>r4</Aliases>
</ReferencePath>
Expand Down

0 comments on commit 75ecf95

Please sign in to comment.