-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Consolidate Directory.Build.targets * Support .NET 8.0 and 7.0 * Build branch dev * Fix publish * Update minver-cli@4.3.0 * Fix build warning * Update README * Consolidate dependency * Update docker .NET 8.0 * Windows support .NET 7.0 and .NET 8.0 * Fix Shell SIGTERM with exec * Typo * Update dependency
- Loading branch information
Showing
23 changed files
with
556 additions
and
128 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
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
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 |
---|---|---|
@@ -1,11 +1,8 @@ | ||
#ARG ASPNET_IMAGE_TAG=6.0-alpine | ||
#ARG ASPNET_IMAGE=mcr.microsoft.com/dotnet/aspnet:${ASPNET_IMAGE_TAG} | ||
ARG ASPNET_IMAGE_TAG=latest | ||
ARG ASPNET_IMAGE_TAG=6.0-alpine | ||
ARG ASPNET_IMAGE=netlah/aspnet-webssh:${ASPNET_IMAGE_TAG} | ||
FROM ${ASPNET_IMAGE} | ||
WORKDIR /app | ||
EXPOSE 80 | ||
RUN apk update && apk add --no-cache ca-certificates | ||
COPY app . | ||
ENTRYPOINT ["/opt/startup/init_container.sh"] | ||
CMD ["dotnet", "EchoServiceApi.dll"] | ||
ENTRYPOINT ["/opt/startup/init_container.sh", "exec", "dotnet", "EchoServiceApi.dll"] |
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
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
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,34 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<CurrentFrameworkVersion>6.0.23;7.0.12;8.0.0-rc.2</CurrentFrameworkVersion> | ||
<ImportedCommonProps>True</ImportedCommonProps> | ||
|
||
<NET_ID>$([MSBuild]::GetTargetFrameworkIdentifier($(TargetFramework)))</NET_ID> | ||
<NET_VER>$([MSBuild]::GetTargetFrameworkVersion($(TargetFramework)))</NET_VER> | ||
|
||
<NET_STD_2_0>False</NET_STD_2_0> | ||
<NET_STD_2_1>False</NET_STD_2_1> | ||
<NET_3_1>False</NET_3_1> | ||
<NET_5_0>False</NET_5_0> | ||
<NET_5_0>False</NET_5_0> | ||
<NET_6_0>False</NET_6_0> | ||
<NET_7_0>False</NET_7_0> | ||
<NET_8_0>False</NET_8_0> | ||
|
||
<NET_STD_2_0 Condition="'$(NET_VER)' == '2.0' And '$(NET_ID)' == '.NETStandard'">True</NET_STD_2_0> | ||
<NET_STD_2_1 Condition="'$(NET_VER)' == '2.1' And '$(NET_ID)' == '.NETStandard'">True</NET_STD_2_1> | ||
<NET_3_1 Condition="'$(NET_VER)' == '3.1' And '$(NET_ID)' == '.NETCoreApp'">True</NET_3_1> | ||
<NET_5_0 Condition="'$(NET_VER)' == '5.0' And '$(NET_ID)' == '.NETCoreApp'">True</NET_5_0> | ||
<NET_6_0 Condition="'$(NET_VER)' == '6.0' And '$(NET_ID)' == '.NETCoreApp'">True</NET_6_0> | ||
<NET_7_0 Condition="'$(NET_VER)' == '7.0' And '$(NET_ID)' == '.NETCoreApp'">True</NET_7_0> | ||
<NET_8_0 Condition="'$(NET_VER)' == '8.0' And '$(NET_ID)' == '.NETCoreApp'">True</NET_8_0> | ||
|
||
<NET_3_1_OR_LESS>False</NET_3_1_OR_LESS> | ||
<NET_5_1_OR_LESS>False</NET_5_1_OR_LESS> | ||
<NET_3_1_OR_LESS Condition="'$(NET_VER)' <= '3.1' And ('$(NET_ID)' == '.NETCoreApp' Or '$(NET_ID)' == '.NETStandard')">True</NET_3_1_OR_LESS> | ||
<NET_5_1_OR_LESS Condition="'$(NET_VER)' <= '5.0' And ('$(NET_ID)' == '.NETCoreApp' Or '$(NET_ID)' == '.NETStandard')">True</NET_5_1_OR_LESS> | ||
|
||
</PropertyGroup> | ||
|
||
</Project> |
Oops, something went wrong.