Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate McMaster <natemcmaster@users.noreply.github.com>2018-10-25 01:42:06 +0300
committerGitHub <noreply@github.com>2018-10-25 01:42:06 +0300
commit968df9578b967512110a5fc9897544690f2b60db (patch)
treeda7e7c96c033f9f5c92ad74e70a7230e3bf85fb4 /.editorconfig
parent5acbb9d138f388d49efb800edd5a3df609f77d46 (diff)
Refactor shared framework projects targets and project layout (#3703)
This refactors the targets used to build the shared framework and its .zip files. There are lots of reasons motivating this: Arcade convergence, migration to VSTS, making it easier to build this locally, etc. Changes: * Moves move content of build/Sharedfx.{props/targets} into eng/targets/SharedFx.Common.{props/targets} * Update the build to produce a `runtime.$rid.Microsoft.AspNetCore.App` package (not just the one with symbols in it) * Refactor the targets which produce .tar.gz/.zip files into separate projects in `src/Installers/` * Refactor installers, unit tests, and the framework projects to use ProjectReference to flow dependencies between different parts of the build. * Makes it easier to build the shared framework locally (for the inner dev loop, you can run `dotnet build -p src/Framework/Microsoft.AspNetCore.App/src/ -r win-x64`)
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig
index 4eb7559fce..35147d7db8 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -11,7 +11,7 @@ charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
-[*.{cs}]
+[*.cs]
indent_size = 4
dotnet_sort_system_directives_first = true:warning