Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
7e4beb1
Remove `publish-*` jobs
Lamparter Apr 25, 2026
b513e7d
Upgrade SDK version
Lamparter Apr 25, 2026
cb8ad45
Replace `Preview` configuration with `Debug`
Lamparter Apr 25, 2026
bdfb3e0
Update Hack Club branding
Lamparter Apr 25, 2026
61ab406
Reintroduce true Windows App SDK compilation target
Lamparter Apr 25, 2026
d28d898
Rename `app` folder to `platforms`
Lamparter Apr 25, 2026
322d376
Recover missing WebAssembly configuration
Lamparter Apr 25, 2026
5c2a468
Remove `ReadMe.md`
Lamparter Apr 26, 2026
5b40b18
Fix random deploy issue
Lamparter Apr 26, 2026
84a4efa
Fix editor config
Lamparter Apr 29, 2026
fe67dd7
Update `README.md`
Lamparter Apr 29, 2026
aca65dd
Improve CI logic as inspired by SecureFolderFS
Lamparter Apr 29, 2026
f5719f3
Remove `-p:Platform="Any CPU"`
Lamparter Apr 29, 2026
64b6561
Fix Uno.Check in CI
Lamparter Apr 29, 2026
470c37f
Fix media recording API project TFM in CI
Lamparter Apr 29, 2026
17ac578
Fix incorrect matrix reference
Lamparter Apr 29, 2026
094808a
Change success message in CLI when the response body is null
Lamparter May 2, 2026
44738c0
Fix platform configuration
Lamparter May 2, 2026
567144a
Fix build error
Lamparter May 2, 2026
909e05a
Format XAML
Lamparter May 2, 2026
4d08072
Update icons
Lamparter May 2, 2026
569f520
Update package metadata
Lamparter May 2, 2026
80a01aa
Change publish directory
Lamparter May 2, 2026
4caa7c0
Make WASM binary output path relative
Lamparter May 2, 2026
9dc9897
Add branded illustrations
Lamparter May 2, 2026
e378cde
Update XAML styler config
Lamparter May 2, 2026
8218939
Fix artifact output directory
Lamparter May 2, 2026
c7b83b0
Remove `PLATFORM` environment variable
Lamparter May 2, 2026
bb1f9c3
Update package publishing workflow
Lamparter May 3, 2026
f12b7e4
Fix CD workflow prerequisites
Lamparter May 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ charset = utf-8
# See https://github.com/dotnet/roslyn/issues/20356#issuecomment-310143926
trim_trailing_whitespace = false

[*.yml]
indent_style = tab
indent_size = 2

# Sort using and Import directives with System.* appearing first
dotnet_sort_system_directives_first = true

Expand All @@ -29,7 +33,7 @@ dotnet_style_qualification_for_property = false:suggestion
dotnet_style_qualification_for_method = false:suggestion
dotnet_style_qualification_for_event = false:suggestion

#### Naming styles ####
#### Naming styles

# Naming rules

Expand Down
5 changes: 3 additions & 2 deletions .github/install_dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: ""

inputs:
target-platform:
description: 'The platform to install dependencies for. #See available values at https://platform.uno/docs/articles/external/uno.check/doc/using-uno-check.html'
description: 'The platform to install dependencies for. See available values at https://platform.uno/docs/articles/external/uno.check/doc/using-uno-check.html'
required: false
default: 'all'
dotnet-version:
Expand Down Expand Up @@ -39,7 +39,8 @@ runs:
run: |
dotnet tool install -g uno.check
("${{ inputs.target-platform }} ".ToLower().Split(' ') | ForEach-Object {
$target = $_.Replace("_win", "").Replace("_macos", "")
$target = $_.Replace("_win", "").Replace("_macos", "").Replace("browserwasm", "wasm").Replace("windows", "wasdk")
$target = $target -replace '^net[^-]*-', ''
if (![string]::IsNullOrEmpty($target)) {
echo "target: $target"
uno-check -v --ci --non-interactive --fix --target $target --skip vswin --skip vsmac --skip xcode --skip androidemulator --skip dotnetnewunotemplates
Expand Down
Loading
Loading