Skip to content

Commit

Permalink
moved build to target .Net Standard (.Net 6) as well as .Net framewor…
Browse files Browse the repository at this point in the history
…k 4.52
  • Loading branch information
RobHolme committed Jul 20, 2022
1 parent 79e29fa commit cf5e97c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions HL7Listener.csproj
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>
1 change: 1 addition & 0 deletions build-debug.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dotnet build --configuration Debug
1 change: 1 addition & 0 deletions build-release.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dotnet build --configuration Release

0 comments on commit cf5e97c

Please sign in to comment.