Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
c6b9de2
Update .gitignore
softworkz Oct 13, 2025
f634dc4
Update NuGet.config
softworkz Oct 13, 2025
0f3f29e
global.json: Pin .net SDK
softworkz Oct 13, 2025
74b80b3
Add ElectronNET project (all build functionality)
softworkz Oct 13, 2025
d6e39fe
Add ElectronNET.Build project (dll with custom MSBuild tasks)
softworkz Oct 13, 2025
14722e1
Remove ElectronNET.CLI project
softworkz Oct 13, 2025
c0c3aae
ElectronNET.Host: Remove build-helper and manifest (no longer needed)
softworkz Oct 13, 2025
0dca0e9
ElectronNET.Host: Update build configuration - changes:
softworkz Oct 13, 2025
5ea368b
ElectronNET.Host: Update main.js with these changes:
softworkz Oct 13, 2025
77efea5
ElectronNET.Host: Fix TS compilation error in tray.js
softworkz Oct 13, 2025
1e93d91
ElectronNET.Host: Fix TS compilation error webcontents.ts
softworkz Oct 13, 2025
e4ce61c
ElectronNET.Host: Update compiled files
softworkz Oct 13, 2025
feddf5f
ElectronNET.API: Move API code to subfolder
softworkz Oct 13, 2025
9275f2a
ElectronNET.API: Add WebRequest API
softworkz Oct 13, 2025
3811b7e
ElectronNET.API: Re-add moved types
softworkz Oct 13, 2025
b06d204
ElectronNET.API: Add ProcessRunner (for running electron from dotnet)
softworkz Oct 13, 2025
d1db928
ElectronNET.API: Add new runtime code (for launch, lifecycle and serv…
softworkz Oct 13, 2025
c6c73a7
ElectronNET.API: Update project file
softworkz Oct 13, 2025
3a42c47
Add ElectronNET.AspNet project (ASP.Net specific runtime code)
softworkz Oct 13, 2025
bcde103
ElectronNET.AspNet: Add WebApplicationBuilderExtensions (new ASP.Net …
softworkz Oct 13, 2025
69129a6
ElectronNET.WebApp: nav.js and demo-btns.js: Increase timeouts
softworkz Oct 13, 2025
7fcb2f0
ElectronNET.WebApp: HostHook: Add missing deps, update same like Host…
softworkz Oct 13, 2025
f814249
ElectronNET.WebApp: HostHook: Make it compile properly
softworkz Oct 13, 2025
c5d9ba0
ElectronNET.WebApp: Remove invalid property in appSettings
softworkz Oct 13, 2025
667a1b2
ElectronNET.WebApp: Remove manifest file (not needed anymore)
softworkz Oct 13, 2025
78b59f6
ElectronNET.WebApp: Adjust controllers for API changes
softworkz Oct 13, 2025
2a26b46
ElectronNET.WebApp: Add builder.json, launchsettings and publish prof…
softworkz Oct 13, 2025
ae12eb4
ElectronNET.WebApp: Adjust startup to use new onAppReady callback
softworkz Oct 13, 2025
40d6558
ElectronNET.WebApp: Update project file with these changes:
softworkz Oct 13, 2025
43ce20d
Add ElectronNET.ConsoleApp test project
softworkz Oct 13, 2025
d0d214c
Introduce a common.props file, which provides version and other packa…
softworkz Oct 13, 2025
4712898
Check in version 0.0.18 packages for convenient testing
softworkz Oct 13, 2025
96063bb
ElectronNET.Core: Update solution file
softworkz Oct 13, 2025
2e05176
Fix typos
softworkz Oct 13, 2025
2d626ab
Reduce pinned dotnet version to 8.0.305 and rollForward to 'feature'
softworkz Oct 13, 2025
5d5e0b8
Reset changelog
softworkz Oct 13, 2025
1ea4c13
Add nuke project to solution
softworkz Oct 13, 2025
0b05b2f
Add solution ElectronNET.Lean for building core projects/packages only
softworkz Oct 13, 2025
cf87904
Mark ElectronNET.Build as non-packable
softworkz Oct 13, 2025
50b4906
Add VersionPostFix to common.props
softworkz Oct 13, 2025
bef7a42
Update nuke build with the following changes:
softworkz Oct 13, 2025
8684514
Move global.json to repo root
softworkz Oct 14, 2025
6060e35
Fix warnings
softworkz Oct 14, 2025
bf3e149
Add changelog entries (AI authored)
softworkz Oct 14, 2025
c914bb8
Draft for a ReadMe update
softworkz Oct 14, 2025
fcb589d
What's new doc page (AI writen)
softworkz Oct 14, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -266,3 +266,4 @@ __pycache__/

# Nuke build tool
.nuke/temp
/publish.cmd
22 changes: 7 additions & 15 deletions .nuke/build.schema.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Build Schema",
"$ref": "#/definitions/build",
"title": "Build Schema",
"definitions": {
"build": {
"type": "object",
"properties": {
"CommonPropsFilePath": {
"type": "string",
"description": "common.props file path - to determine the configured version"
},
"Configuration": {
"type": "string",
"description": "Configuration to build - Default is 'Debug' (local) or 'Release' (server)",
Expand Down Expand Up @@ -64,7 +68,7 @@
},
"ReleaseNotesFilePath": {
"type": "string",
"description": "ReleaseNotesFilePath - To determine the SemanticVersion"
"description": "ReleaseNotesFilePath - To determine the lates changelog version"
},
"Root": {
"type": "string",
Expand All @@ -78,14 +82,8 @@
"enum": [
"Clean",
"Compile",
"CompileSample",
"CreatePackages",
"Default",
"ElectronizeCustomWin7TargetSample",
"ElectronizeGenericTargetSample",
"ElectronizeLinuxTargetSample",
"ElectronizeMacOsTargetSample",
"ElectronizeWindowsTargetSample",
"Package",
"PrePublish",
"Publish",
Expand All @@ -109,14 +107,8 @@
"enum": [
"Clean",
"Compile",
"CompileSample",
"CreatePackages",
"Default",
"ElectronizeCustomWin7TargetSample",
"ElectronizeGenericTargetSample",
"ElectronizeLinuxTargetSample",
"ElectronizeMacOsTargetSample",
"ElectronizeWindowsTargetSample",
"Package",
"PrePublish",
"Publish",
Expand All @@ -141,4 +133,4 @@
}
}
}
}
}
2 changes: 1 addition & 1 deletion .nuke/parameters.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"$schema": "./build.schema.json",
"Solution": "src/ElectronNET.sln"
"Solution": "src/ElectronNET.Lean.sln"
}
448 changes: 56 additions & 392 deletions Changelog.md

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions NuGet.config
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<config>
<add key="repositoryPath" value="artifacts" />
</config>
<packageSources>
<clear />
<add key="LocalDev" value="artifacts" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
</packageSources>
</packageSources>
</configuration>
Loading