-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moved build to target .Net Standard (.Net 6) as well as .Net framewor…
…k 4.52
- Loading branch information
Showing
3 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<AssemblyName>HL7Listener</AssemblyName> | ||
<OutputType>Exe</OutputType> | ||
<TargetFrameworks>net6.0;net452</TargetFrameworks> | ||
<EnableDefaultItems>true</EnableDefaultItems> | ||
<PlatformTarget>x64</PlatformTarget> | ||
<Authors>Rob Holme</Authors> | ||
<Product>HL7 Listener</Product> | ||
<Description>Simple MLLP listener to accept HL7 v2.x messages</Description> | ||
<Version>1.3.0</Version> | ||
<FileVersion>1.3.0.0</FileVersion> | ||
<RepositoryUrl>https://github.com/RobHolme/HL7-Listener</RepositoryUrl> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dotnet build --configuration Debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dotnet build --configuration Release |