Skip to content

Commit

Permalink
Created a new solution architecture with UWP app, .Net Core and .Net …
Browse files Browse the repository at this point in the history
…Standard app.
  • Loading branch information
veler committed Jan 3, 2023
1 parent e812235 commit 25189b1
Show file tree
Hide file tree
Showing 2,105 changed files with 5,496 additions and 281,937 deletions.
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
###############################################################################
* text=auto

# These files are checked out using LF locally
*.sh eol=lf
*.txt eol=lf

###############################################################################
# Set default behavior for command prompt diff.
#
Expand Down
147 changes: 128 additions & 19 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,6 @@
# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs

# Build results
[Dd]ebugPublic/
x64/
x86/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/

# Visual Studio 2015/2017 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
Expand All @@ -33,16 +24,6 @@ Generated\ Files/
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*

# Assembly Info file that is automatically updated on build
SharedAssemblyInfo.cs

# TypeScript ignores
*.js
*.js.map

# Monaco Dependency (Download from https://microsoft.github.io/monaco-editor/)
src/dev/impl/DevToys.MonacoEditor/monaco-editor

# NUNIT
*.VisualState.xml
TestResult.xml
Expand Down Expand Up @@ -334,3 +315,131 @@ ASALocalRun/

# MFractors (Xamarin productivity tool) working folder
.mfractor/

# Local History for Visual Studio
.localhistory/


##
## Visual studio for Mac
##


# globs
Makefile.in
*.userprefs
*.usertasks
config.make
config.status
aclocal.m4
install-sh
autom4te.cache/
*.tar.gz
tarballs/
test-results/

# Mac bundle stuff
*.dmg
*.app

# content below from: https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon


# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# content below from: https://github.com/github/gitignore/blob/master/Global/Windows.gitignore
# Windows thumbnail cache files
Thumbs.db
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk

# JetBrains Rider
.idea/
*.sln.iml

##
## Visual Studio Code
##
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

##
## DevToys specific
##

# TypeScript ignores
*.js
*.js.map
package-lock.json

# Nuke Build
.nuke/temp/

# Mono auto generated files
mono_crash.*

# Monaco Dependency (Download from https://microsoft.github.io/monaco-editor/)
src/app/dev/DevToys.MonacoEditor/monaco-editor

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
[Ww][Ii][Nn]32/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/
# [Oo]ut/
[Ll]og/
[Ll]ogs/
153 changes: 153 additions & 0 deletions .nuke/build.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,153 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Build Schema",
"$ref": "#/definitions/build",
"definitions": {
"build": {
"type": "object",
"properties": {
"Configuration": {
"type": "string",
"description": "Configuration to build - Default is 'Debug' (local) or 'Release' (server)",
"enum": [
"Debug",
"Release"
]
},
"Continue": {
"type": "boolean",
"description": "Indicates to continue a previously failed build attempt"
},
"Help": {
"type": "boolean",
"description": "Shows the help text for this build assembly"
},
"Host": {
"type": "string",
"description": "Host for execution. Default is 'automatic'",
"enum": [
"AppVeyor",
"AzurePipelines",
"Bamboo",
"Bitbucket",
"Bitrise",
"GitHubActions",
"GitLab",
"Jenkins",
"Rider",
"SpaceAutomation",
"TeamCity",
"Terminal",
"TravisCI",
"VisualStudio",
"VSCode"
]
},
"IncrementalBuild": {
"type": "boolean",
"description": "Do an incremental build"
},
"NoLogo": {
"type": "boolean",
"description": "Disables displaying the NUKE logo"
},
"Partition": {
"type": "string",
"description": "Partition to use on CI"
},
"Plan": {
"type": "boolean",
"description": "Shows the execution plan (HTML)"
},
"PlatformTargets": {
"type": "array",
"description": "The target platform",
"items": {
"type": "string",
"enum": [
"Linux",
"MacOS",
"Wasm",
"Windows"
]
}
},
"Profile": {
"type": "array",
"description": "Defines the profiles to load",
"items": {
"type": "string"
}
},
"PublishReadyToRun": {
"type": "boolean",
"description": "https://bit.ly/3RSEo7w"
},
"PublishSelfContained": {
"type": "boolean",
"description": "https://bit.ly/2OEU0KO - Enabled by default"
},
"PublishSingleFile": {
"type": "boolean",
"description": "https://bit.ly/3xvq7FA"
},
"PublishTrimmed": {
"type": "boolean",
"description": "https://bit.ly/3RKZkNH"
},
"Root": {
"type": "string",
"description": "Root directory during build execution"
},
"RunTests": {
"type": "boolean",
"description": "Runs unit tests"
},
"Skip": {
"type": "array",
"description": "List of targets to be skipped. Empty list skips all dependencies",
"items": {
"type": "string",
"enum": [
"Clean",
"Compile",
"Publish",
"Restore",
"SetVersion",
"UnitTests"
]
}
},
"Solution": {
"type": "string",
"description": "Path to a solution file that is automatically loaded"
},
"Target": {
"type": "array",
"description": "List of targets to be invoked. Default is '{default_target}'",
"items": {
"type": "string",
"enum": [
"Clean",
"Compile",
"Publish",
"Restore",
"SetVersion",
"UnitTests"
]
}
},
"Verbosity": {
"type": "string",
"description": "Logging verbosity during build execution. Default is 'Normal'",
"enum": [
"Minimal",
"Normal",
"Quiet",
"Verbose"
]
}
}
}
}
}
4 changes: 4 additions & 0 deletions .nuke/parameters.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"$schema": "./build.schema.json",
"Solution": "src/DevToys.sln"
}
Loading

0 comments on commit 25189b1

Please sign in to comment.