Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 46c1a78e3f | |||
| fb381e56c5 |
@@ -1,3 +1,3 @@
|
||||
{
|
||||
"image": "mcr.microsoft.com/dotnet/sdk:7.0"
|
||||
"image": "mcr.microsoft.com/dotnet/sdk:7.0-alpine"
|
||||
}
|
||||
2
publish-alpine.sh
Executable file
2
publish-alpine.sh
Executable file
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
dotnet publish src/Alma/Alma.csproj -c Release -r linux-musl-x64 -p:PublishAot=true
|
||||
2
publish-linux.sh
Executable file
2
publish-linux.sh
Executable file
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh
|
||||
dotnet publish src/Alma/Alma.csproj -c Release -r linux-x64 -p:PublishAot=true
|
||||
2
publish-windows.cmd
Normal file
2
publish-windows.cmd
Normal file
@@ -0,0 +1,2 @@
|
||||
|
||||
dotnet publish src/Alma/Alma.csproj -c Release -r win-x64 -p:PublishAot=true
|
||||
@@ -1,7 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<RootNamespace>Alma</RootNamespace>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
</ItemGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<RootNamespace>Alma</RootNamespace>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
Reference in New Issue
Block a user