Skip to content

Commit dd4cc4f

Browse files
committed
Build self-contained instead of framework-dependent
1 parent 1742fdd commit dd4cc4f

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

scripts/publish.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ if [ ! -f "$MSBUILD" ]; then
1818
exit 1
1919
fi
2020

21-
echo "Running New-Release.ps1 Phase 1 for platform $MSBUILD_PLATFORM"
22-
powershell.exe -NoProfile ps1/New-Release.ps1 -Platform "$MSBUILD_PLATFORM" -MsbuildPath "'$MSBUILD'" -Phase "1"
21+
echo "Running Start-Release.ps1 for platform $MSBUILD_PLATFORM"
22+
powershell.exe -NoProfile ps1/Start-Release.ps1 -Platform "$MSBUILD_PLATFORM" -MsbuildPath "'$MSBUILD'"

src/SqlNotebook/Properties/PublishProfiles/FolderProfile.pubxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
1010
<PublishProtocol>FileSystem</PublishProtocol>
1111
<TargetFramework>net9.0-windows</TargetFramework>
1212
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
13-
<SelfContained>false</SelfContained>
13+
<SelfContained>true</SelfContained>
1414
<PublishSingleFile>False</PublishSingleFile>
1515
<PublishReadyToRun>True</PublishReadyToRun>
1616
</PropertyGroup>

src/SqlNotebook/SqlNotebook.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<RunPostBuildEvent>Always</RunPostBuildEvent>
1111
<RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers>
1212
<ApplicationIcon>SqlNotebookIcon.ico</ApplicationIcon>
13-
<SelfContained>False</SelfContained>
13+
<SelfContained>True</SelfContained>
1414
</PropertyGroup>
1515
<ItemGroup>
1616
<ProjectReference Include="..\..\ext\dockpanelsuite\WinFormsUI\ThemeVS2012Light.csproj" />

src/SqlNotebookCmd/SqlNotebookCmd.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<Platforms>x64;ARM64</Platforms>
88
<LangVersion>latest</LangVersion>
99
<NoWarn>$(NoWarn);NETSDK1138</NoWarn>
10-
<SelfContained>False</SelfContained>
10+
<SelfContained>True</SelfContained>
1111
</PropertyGroup>
1212
<ItemGroup>
1313
<ProjectReference Include="..\SqlNotebookScript\SqlNotebookScript.csproj" />

src/Tests/Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<RuntimeIdentifiers>win-x64;win-x86;win-arm64</RuntimeIdentifiers>
99
<RunPostBuildEvent>Always</RunPostBuildEvent>
1010
<NoWarn>$(NoWarn);NETSDK1138</NoWarn>
11-
<SelfContained>False</SelfContained>
11+
<SelfContained>True</SelfContained>
1212
</PropertyGroup>
1313
<ItemGroup>
1414
<ProjectReference Include="..\SqlNotebookCmd\SqlNotebookCmd.csproj" />

0 commit comments

Comments
 (0)