├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── config.yml └── workflows │ └── azure-static-web-apps-jolly-grass-05beb181e.yml ├── .gitignore ├── Analyzers ├── SpeakerDataAnalyzer.cs ├── ValidateSpeakerLanguage.cs ├── ValidateSpeakerLinks.cs ├── ValidateSpeakerPronouns.cs └── ValidateSpeakerTopics.cs ├── App.config ├── AppSettings.cs ├── BlogFeedItem.cs ├── CODE_OF_CONDUCT.md ├── FixedAtomParser.cs ├── Generator.csproj ├── Generator.sln ├── GeocodeLocations.cs ├── GetBlogFeeds.cs ├── LICENSE ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── SiteKeys.cs ├── SpeakerImage.cs ├── SpeakerLinkAttribute.cs ├── Utils └── StringUtils.cs ├── XmlStreamReader.cs ├── azure-pipelines.yml ├── dnfwebsite.code-workspace ├── functions ├── host.json ├── issues │ └── index.ts ├── package-lock.json ├── package.json ├── project-spotlight │ ├── Cake.json │ ├── DotNetNuke.json │ ├── DotVVM.json │ ├── Oqtane.json │ ├── Orleans.json │ ├── Pwned.json │ ├── ResX.json │ ├── Roslyn.json │ ├── Verify.json │ ├── Wix.json │ ├── index.ts │ └── nanoFramework.json └── tsconfig.json └── input ├── 404.cshtml ├── CNAME ├── LICENSE ├── _BasicPageLayout.cshtml ├── _Layout.cshtml ├── _SectionHeaderPageLayout.cshtml ├── _ViewImports.cshtml ├── _ViewStart.cshtml ├── _partials ├── _blog-card.cshtml ├── _candidate-card.cshtml ├── _committee-card.cshtml ├── _corporate-sponsor-logo-card.cshtml ├── _elections-banner.cshtml ├── _elections-results-banner.cshtml ├── _events.cshtml ├── _favicons.cshtml ├── _footer.cshtml ├── _head.cshtml ├── _header.cshtml ├── _member-small-card.cshtml ├── _news.cshtml ├── _presentation-detail.cshtml └── _team-member-card.cshtml ├── _redirects ├── about ├── board-of-directors.cshtml ├── board │ ├── fy22 │ │ ├── bill-wagner.md │ │ ├── frank-arkhurst-odoom.md │ │ ├── javier-lozano.md │ │ ├── mattias-karlsson.md │ │ ├── rich-lander.md │ │ ├── rob-prouse.md │ │ └── shawn-wildermuth.md │ └── fy23 │ │ ├── iris-classon.md │ │ ├── javier-lozano.md │ │ ├── jessica-white.md │ │ ├── joseph-guadagno.md │ │ ├── mattias-karlsson.md │ │ ├── rich-lander.md │ │ └── rob-prouse.md ├── budget │ ├── fy20-balance-sheet.png │ ├── fy20-pie-chart.png │ ├── fy20-pl-statement.pdf │ └── index.md ├── bylaws.md ├── code-of-conduct.cshtml ├── election │ ├── campaign-2019 │ │ ├── _directory.yaml │ │ ├── andreia-gaita.md │ │ ├── andrey-akinshin.md │ │ ├── antoine-hemery.md │ │ ├── ben-adams.md │ │ ├── beth-massi.md │ │ ├── claire-novotny.md │ │ ├── daron-yondem.md │ │ ├── dave-glick.md │ │ ├── david-dieruf.md │ │ ├── david-pine.md │ │ ├── eric-sink.md │ │ ├── erik-schierboom.md │ │ ├── gary-ewan-park.md │ │ ├── ginny-caughey.md │ │ ├── iris-classon.md │ │ ├── jamie-rees.md │ │ ├── jessica-white.md │ │ ├── jon-skeet.md │ │ ├── joseph-guadagno.md │ │ ├── lea-wegner.md │ │ ├── luce-carter.md │ │ ├── maira-wenzel.md │ │ ├── marc-bruins.md │ │ ├── martijn-laarman.md │ │ ├── mattias-karlsson.md │ │ ├── mikayla-hutchinson.md │ │ ├── mitchel-sellers.md │ │ ├── morten-nielsen.md │ │ ├── natallia-dzenisenka.md │ │ ├── nate-barbettini.md │ │ ├── peter-mbanugo.md │ │ ├── phil-haack.md │ │ ├── pratik-khandelwal.md │ │ ├── robert-mclaws.md │ │ ├── robin-krom.md │ │ ├── rodrigo-diaz-concha.md │ │ ├── sam-basu.md │ │ ├── sara-chipps.md │ │ ├── sean-killeen.md │ │ ├── shaun-walker.md │ │ ├── spencer-schneidenbach.md │ │ ├── stefan-stefanov.md │ │ ├── steve-gordon.md │ │ ├── sunny-ahuwanya.md │ │ └── toni-solarin-sodara.md │ ├── campaign-2020 │ │ ├── _directory.yaml │ │ ├── ben-adams.md │ │ ├── beth-massi.md │ │ ├── bill-wagner.md │ │ ├── dennie-declercq.md │ │ ├── dhananjay-kumar.md │ │ ├── huei-feng.md │ │ ├── jamie-howarth.md │ │ ├── javier-lozano.md │ │ ├── jay-harris.md │ │ ├── jeff-strauss.md │ │ ├── jeffrey-chilberto.md │ │ ├── jerome-hardaway.md │ │ ├── joseph-guadagno.md │ │ ├── layla-porter.md │ │ ├── mitchel-sellers.md │ │ ├── rainer-stropek.md │ │ ├── rodney-littles-ii.md │ │ ├── rodrigo-diaz-concha.md │ │ └── shawn-wildermuth.md │ ├── campaign-2021 │ │ ├── _directory.yaml │ │ ├── david-mccarter.md │ │ ├── david-whitney.md │ │ ├── dixin-yan.md │ │ ├── frank-arkhurst-odoom.md │ │ ├── javier-lozano.md │ │ ├── kevin-avignon.md │ │ ├── mattias-karlsson.md │ │ ├── mitchel-sellers.md │ │ ├── pedro-henrique-de-souza-jesus.md │ │ └── rob-prouse.md │ ├── campaign-2022 │ │ ├── _directory.yaml │ │ ├── david-dieruf.md │ │ ├── dennie-declercq.md │ │ ├── gabriel-emmanuel.md │ │ ├── iris-classon.md │ │ ├── iris_classon.jpg │ │ ├── jeffrey-chilberto.jpg │ │ ├── jeffrey-chilberto.md │ │ ├── jessica-white.jpg │ │ ├── jessica-white.md │ │ ├── joseph-guadagno.md │ │ ├── poornima-nayar.jpg │ │ ├── poornima-nayar.md │ │ ├── rainer-stropek.jpg │ │ └── rainer-stropek.md │ ├── campaign.cshtml │ ├── candidates.cshtml │ ├── example.md │ ├── index.cshtml │ ├── nomination-committee-2020 │ │ ├── _directory.yaml │ │ ├── iris-classon.md │ │ ├── jessica-white.md │ │ ├── julie-lerman.md │ │ ├── rabeb-othmani.md │ │ └── steve-smith.md │ ├── nomination-committee-2021 │ │ ├── _directory.yaml │ │ ├── ben-day.md │ │ ├── dave-brock.md │ │ ├── dhananjay-kumar.md │ │ ├── irina-scurtu.md │ │ ├── iris-classon.md │ │ ├── rabeb-othmani.md │ │ └── samidip-basu.md │ ├── nomination-committee-2022 │ │ ├── _directory.yaml │ │ ├── bill-wagner.md │ │ ├── layla-porter.md │ │ ├── stacey-cashmore.md │ │ ├── tanner-gooding.md │ │ └── veronika-kolesnikova.md │ ├── policy.md │ ├── questions.md │ └── results.cshtml ├── faq.cshtml ├── index.cshtml ├── member-policy.md ├── privacy-policy.cshtml ├── survey-rules.cshtml ├── survey.cshtml ├── team │ ├── _directory.yaml │ ├── chris-sfanos.md │ ├── eric-schneider.md │ └── miklos-barkoczi.md └── technical-steering-group.cshtml ├── api ├── .funcignore ├── .gitignore ├── _directory.yaml ├── host.json ├── issues │ └── function.json ├── package-lock.json ├── package.json ├── project-spotlight │ └── function.json ├── proxies.json └── rss │ ├── function.json │ ├── index.js │ └── index.yaml ├── assets ├── corporate-sponsors │ ├── Microsoft.png │ ├── amazon.png │ ├── devexpress-logo-2020.png │ ├── digicert.svg │ ├── endjin.png │ ├── insight.png │ ├── okta.png │ ├── pivotal.png │ ├── progress-telerik.png │ ├── uno.png │ ├── vmware.png │ └── volosoft.png ├── documents │ ├── FY23-Sponsorship-Levels.pdf │ ├── OnBoardingQuestionaire.docx │ └── net-foundation-advisory-council-proposal.pdf ├── members │ ├── ben-adams.jpg │ ├── ben-day.jpg │ ├── beth-massi.jpg │ ├── bill-wagner.jpg │ ├── brendan-forster.jpg │ ├── brian-jablonsky.jpg │ ├── campaign-2019 │ │ ├── 2148318 │ │ ├── 02a016a5-1f38-46db-87a8-304f6e233d8e.jpg │ │ ├── 0c009f81-0d27-4796-92e8-eb49aa1aa7f8.jpg │ │ ├── 17135de6-8a9f-42b6-820b-eee06a25d7b2.jpg │ │ ├── 17bbbf3e-c635-4802-bfb7-846d9e21b150.jpg │ │ ├── 1c6f3c17-9342-4909-bc3d-1d47f1b4a3eb.jpg │ │ ├── 1cb9dce7-4ffb-4d6a-89fd-bcd2709e0599.jpg │ │ ├── 2a562e01-9cda-4202-a901-4c1850cb33c9.jpg │ │ ├── 2f388304-927f-44b4-9d2e-8e9e3c2ebc90.jpg │ │ ├── 2fe859ef-0341-463e-ac01-9abb34a94ad9.jpg │ │ ├── 33b689c1-f30e-4859-8f92-76a91914ebd9.jpg │ │ ├── 3af64059-37f6-4adf-abc1-3553a13f5683.jpg │ │ ├── 46845362-f6dd-45e8-b0a6-49e9cfd6f641.jpg │ │ ├── 4a762811-84b5-4db8-b941-0198fe9c4bfe.jpg │ │ ├── 4fabcac7-d0af-4c01-856b-4fa14cbbcd29.jpg │ │ ├── 5029ea92-2994-4eb5-ad0d-0fada9f7bd3a.jpg │ │ ├── 53609747-504f0580-3b96-11e9-979d-0727bcc63f42.png │ │ ├── 53630658-7dd49700-3c08-11e9-8329-d5d6f27264c2.png │ │ ├── 53631166-3521db80-3c12-11e9-8946-01c0c4da2d61.png │ │ ├── 53655225-71e6d600-3c04-11e9-89b9-69ce1261e53b.png │ │ ├── 53698333-3a655e80-3da9-11e9-931e-39ae72bf1104.jpg │ │ ├── 53746947-38b29e00-3e70-11e9-982a-a0ddb0a9134b.jpg │ │ ├── 54035164-bc58eb80-41de-11e9-9faf-e717eba0165a.jpg │ │ ├── 54139990-10d7b300-43f9-11e9-9db5-da607afd907f.png │ │ ├── 54175230-5ebdeb00-44cd-11e9-8b5f-d9b760065e97.jpg │ │ ├── 54227549-637aa300-44bd-11e9-8b88-bdd2c9060684.png │ │ ├── 54499348-16486800-48e7-11e9-8aa0-ef9cd15a002d.jpg │ │ ├── 54570031-38e78900-499a-11e9-9d03-bf2db6f885d6.jpg │ │ ├── 58637674-8a9a-42bc-ad62-47447d176f0f.jpg │ │ ├── 5d90914a-07bd-4f92-aab0-9df026779702.jpg │ │ ├── 60e3d1c4-94a1-47c9-8e20-2b59052cdbdb.jpg │ │ ├── 683a145a-53a3-4d41-88f9-1d573316d5a8.jpg │ │ ├── 7560ad40-ccaa-4bd9-b5d8-967f9bcb31cd.jpg │ │ ├── 760861b0-a922-4767-aac6-c26c4efffe4d.jpg │ │ ├── 764aadea-1e93-48f6-97b8-e226388603ee.jpg │ │ ├── 77475b18-f681-4cd0-87d3-44b952733153.jpg │ │ ├── 7d09f48d-0281-4cb2-9a1a-b5c0e4a02e77.jpg │ │ ├── 7fdddbc7-57d2-4ece-9f64-edaae7c0521b.jpg │ │ ├── 91d8775a-b129-4321-97f1-4eff32632f5b.jpg │ │ ├── 9b3f5b7e-4ad6-43aa-b453-253ba66503d8.jpg │ │ ├── RDC_Portrait_Small.jpg │ │ ├── acb757aa-e39f-43c6-9edc-7873606a21ba.jpg │ │ ├── b6ee3715-63f8-4999-b548-0060867f3915.jpg │ │ ├── ba914438-998b-4069-800e-bee2d4222e98.jpg │ │ ├── c3e06956-1e6e-4271-9ad2-b3e82303ab79.jpg │ │ ├── cdebee6f-bbf9-4f0c-b5d6-0f7fd629cfb3.jpg │ │ ├── fc65339f-e397-483a-b668-85f481062b9b.jpg │ │ ├── fdc80204-3d45-44f6-af4d-7da9dc8de640.jpg │ │ ├── me.png │ │ └── shaun-walker.png │ ├── campaign-2020 │ │ ├── dennie-declercq.jpg │ │ ├── dhananjay-kumar.jpg │ │ ├── huei-feng.jpg │ │ ├── jamie-howarth.jpg │ │ ├── javier-lozano.jpg │ │ ├── jay-harris.jpg │ │ ├── jeff-strauss.jpg │ │ ├── jeffrey-chilberto.jpg │ │ ├── jerome-hardaway.jpg │ │ ├── joseph-guadagno.jpg │ │ ├── layla-porter.jpg │ │ ├── mitchel-sellers.jpg │ │ ├── rainer-stropek.jpg │ │ ├── rodney-littles-ii.jpg │ │ ├── rodrigo-diaz-concha.jpg │ │ └── shawn-wildermuth.jpg │ ├── campaign-2021 │ │ ├── davidwhitney.jpg │ │ ├── frankodoom.png │ │ ├── mattias-karlsson.jpg │ │ ├── placeholder.txt │ │ └── rob-prouse.jpg │ ├── campaign-2022 │ │ ├── iris_classon.jpg │ │ ├── jeffrey-chilberto.jpg │ │ ├── jessica-white.jpg │ │ ├── poornima-nayar.jpg │ │ └── rainer-stropek.jpg │ ├── chris-sfanos.jpg │ ├── claire-novotny.jpg │ ├── daniel-roth.jpg │ ├── dave-brock.jpg │ ├── dhananjay-kumar.jpg │ ├── dominick-baier.jpg │ ├── eric-schneider.jpg │ ├── immo-landwerth.jpg │ ├── irina-scurtu.jpg │ ├── iris-classon.jpg │ ├── isaac-levin.jpg │ ├── javier-lozano.jpg │ ├── jeff-strauss.jpg │ ├── jessica-white.jpg │ ├── jon-galloway.png │ ├── jon-skeet.jpg │ ├── julie-lerman.jpg │ ├── layla-porter.jpg │ ├── martin-woodward.jpg │ ├── mattias-karlsson.jpg │ ├── miklos-barkoczi.png │ ├── phil-haack.jpg │ ├── rabeb-othmani.jpg │ ├── rich-lander.jpg │ ├── rob-prouse.jpg │ ├── rodney-littles-ii.jpg │ ├── sami-basu.jpg │ ├── sara-chipps.png │ ├── shaun-walker.jpg │ ├── shawn-wildermuth.jpg │ ├── stacy-cashmore.jpg │ ├── steve-smith.jpg │ └── veronika-kolesnikova.jpg ├── posts │ ├── 009ab65d-0d19-45ef-870c-85d8366a1c98.gif │ ├── 1c771e40-ae82-42f5-b260-c85f6736f3b1.png │ ├── 1f162626bb47cb7b02ddf694434e140f.png │ ├── 217da7e1-5e3c-40aa-bb08-3e744ef93db8.png │ ├── 28f8d88e6f4d71d1ad09a659cef56a2f.png │ ├── 31e83145-c125-4696-95ca-ec8f84d56ce2.jpg │ ├── 32fd9305-5625-4b8e-94fa-c6916c320e71.jpg │ ├── 4acc4ac7-42b9-4345-9020-f1fc0110470a.png │ ├── 54181549-cad12c80-4496-11e9-8c3d-426c5d1d008b.jpg │ ├── 74003b16-78f9-4abd-8d12-ccbc26077669.png │ ├── 74241694-64015800-4c91-11ea-9431-736bc05717a0.png │ ├── 76425289-a12b3980-6366-11ea-977d-a1cf35af6cf8.png │ ├── 76426382-3975ee00-6368-11ea-97cf-fee658b2ce35.png │ ├── 76426729-aab5a100-6368-11ea-936f-ab3ac79d957c.png │ ├── 76426783-bc974400-6368-11ea-90bd-40e3f56daad1.png │ ├── 76427201-40513080-6369-11ea-9f30-b5146fec6338.png │ ├── 790b50a0e40d778b1ae844813ee540b0.png │ ├── 8ab1b4f70484311bb03e3fe129232410.png │ ├── 8c7df6eb-b295-4158-b293-9d3416db6e7d.png │ ├── 8fd1e465-9efa-4fc0-8c0f-60b7f5373ba3.jpg │ ├── 91a33811-0b6c-4f2f-83e8-3d4f720a84b9.png │ ├── B7MGXhhb_400x400.png │ ├── BethM.jpg │ ├── MSFT_18023_dotNETConf_banners_email800x200_eventInfo_r3_KW.jpg │ ├── ODataLogo-96.png │ ├── RachelReese.JPG │ ├── WWTinChina.jpg │ ├── a6d67a46-573c-4d62-aef2-daa5610ddfd5.jpg │ ├── a865e1a3d11238c1fad86766c5725740.png │ ├── akkadotnet-video.jpg │ ├── anglesharp-core-logo.png │ ├── automapper.png │ ├── bb977c44-1c97-4a5e-b325-8410ca30ff14.png │ ├── bcd54232-6e7d-4e54-a254-ebf435315975.jpg │ ├── benchmarkdotnet_logo.png │ ├── c0470106b9ba6699642d2c2fd2bd9b28.png │ ├── c7bae23e-d0ad-45e3-850f-d2bc2296c5e0.jpg │ ├── cake-screenshot.png │ ├── cc835bca2ea5a15970aaa0173c2ecebf.png │ ├── ceab7291-9a1b-4db8-83c9-46c6b2bdf744.jpg │ ├── connect-dnf.png │ ├── corporate-sponsors-with-aws.png │ ├── coverlet-icon.svg │ ├── cqrs_documents.pdf │ ├── cropped.jpg │ ├── d0116177-1422-43c8-a2a8-be355cea03f2.png │ ├── d115925b-2ca7-48bd-8259-9afd54bd4dfe.png │ ├── devexpress-logo-2020.png │ ├── dimagLogo.png │ ├── dnf-meetups-dec18.jpg │ ├── dnf-new-projects-nov17.png │ ├── dnf-voting-stats-mar-26.png │ ├── dotnet-bot-hacktoberfest.png │ ├── dotnetconf-2019-nigeria.png │ ├── dotnetconf-2019-romania.png │ ├── dotnetconf-2019-thailand.png │ ├── dotnetconf-2019-tokyo.png │ ├── dotnetsummer-keen-kanban-board.png │ ├── dotvvm-hackfest-1.gif │ ├── dotvvm-hackfest-2.gif │ ├── dotvvm-hackfest-3.jpg │ ├── e0448b2e-2fcc-4539-beb8-55a16f07d9ba.jpg │ ├── e480cc53-ba2f-490f-9e1e-08da35e6fc57.png │ ├── e7edfe68-09d6-4713-a3e4-3a403d92fb48.png │ ├── ee48e462-f704-448c-986a-0c8ef4c37ca7.png │ ├── f7365430b5b70746efa9cff3e55ba85e.png │ ├── f91cb28aeac6bb5f61fb6ea0dbbc1876.png │ ├── humanitarian-toolbox-hackfest-kickoff.jpg │ ├── imagesharp.png │ ├── infernet-icon.png │ ├── jon-galloway.png │ ├── json_net.png │ ├── logo-dotvvm.svg │ ├── maturity-ladder.png │ ├── maturity-model-graphics.png │ ├── maxresdefault.jpg │ ├── meetupmap_1-2018.png │ ├── mvvmcross-hackfest-kickoff.jpg │ ├── onnx-diagram-v03.png │ ├── opencollective_logo.png │ ├── oren-novotny.jpg │ ├── outreach-proposal-2.jpg │ ├── outreach-proposal.jpg │ ├── peachpie-possibilities.png │ ├── polly_logo.png │ ├── reactive-ui-video.png │ ├── reactiveui-logo.png │ ├── samsung.jpg │ ├── steeltoe-logo.svg │ ├── symbolsource.png │ ├── the-truth-about-open-source.jpg │ ├── tizen-preview-2.png │ ├── tsg-2016.png │ ├── tsg.png │ ├── ui-for-uwp-shirts.jpg │ ├── uwp-ui.png │ └── wwt_planetarium.jpg └── projects │ ├── BenchmarkDotNet.png │ ├── Couchbase.png │ ├── FluentValidation.png │ ├── Humanizer.png │ ├── MvvmLight.png │ ├── Nerdbank.GitVersioning.svg │ ├── OData-Connected-Service.png │ ├── Pivotal-Logo.png │ ├── anglesharp-logo.png │ ├── ant-design-blazor.svg │ ├── app-vNext.jpg │ ├── aspnet-api-versioning.svg │ ├── aspnetboilerplate.png │ ├── automapper.jpg │ ├── avalonia.png │ ├── bunit-logo.png │ ├── cake-large.png │ ├── cecil.jpg │ ├── chem4word.jpg │ ├── coverlet.png │ ├── data-grid-extensions.png │ ├── dnn-platform.jpg │ ├── dotnet-platform.png │ ├── dotnext.svg │ ├── dotvvm_logo_square.png │ ├── elsa.png │ ├── esquio.png │ ├── finbuckle.png │ ├── frp-excel.gif │ ├── hibp.jpg │ ├── identitymanager.jpg │ ├── identitymodel.jpg │ ├── identityserver.png │ ├── jsondotnet.png │ ├── logo-prism.png │ ├── logo.png │ ├── logo_big.png │ ├── mahapps.metro.logo.png │ ├── marten.png │ ├── microsoft.jpg │ ├── nanoframework.png │ ├── neo-logo.svg │ ├── nerdbank-gitversioning.svg │ ├── nuget-package-explorer.png │ ├── nunit.png │ ├── omnisharp.png │ ├── oqtane-white.png │ ├── oqtane.png │ ├── orchardcore_logo.png │ ├── outercurve.png │ ├── peachpie.png │ ├── petabridge_logo.png │ ├── piranha-cms.png │ ├── progressteleriklogo.png │ ├── protobuild.jpg │ ├── pwned.png │ ├── pythonnet.png │ ├── reactive-extensions.png │ ├── reactiveui.jpg │ ├── restsharp.png │ ├── resx-resource-manager.png │ ├── salesforce-toolkits.png │ ├── search-autocomplete.gif │ ├── silk.net.svg │ ├── sixlabors.256.png │ ├── spectre-console.png │ ├── spotlight-transcripts │ ├── cake-transcript.txt │ ├── dotnetnuke-transcript.txt │ └── oqtane-transcript.txt │ ├── stride.png │ ├── system.drawing.jpg │ ├── telerik-ui-for-uwp.png │ ├── umbraco.svg │ ├── unitycontainer.png │ ├── verify.svg │ ├── wix-white.png │ ├── xamarin.jpg │ ├── xamarincommunitytoolkit.png │ └── xunit.jpg ├── blog ├── _archives.cshtml ├── _posts.cshtml ├── archive.cshtml ├── index.cshtml └── posts │ ├── _Layout.cshtml │ ├── _ViewStart.cshtml │ ├── _current-newsletter-draft.md │ ├── _directory.yaml │ ├── advisory-council-proposal-call-for-community-feedback-extended-to-december-5th.md │ ├── announcing-llilc-llvm-for-dotnet.md │ ├── announcing-net-foundation-academy.md │ ├── announcing-net-foundation-elections-2020.md │ ├── announcing-net-foundation-elections-2021.md │ ├── announcing-net-foundation-open-membership.md │ ├── announcing-net-summer-hackfest-2017.md │ ├── announcing-new-governance-model-and-project-contributions-to-the-net-foundation.md │ ├── announcing-speakers-directory.md │ ├── cake-welcome.md │ ├── channel-9-interview-net-open-source-initiative.md │ ├── check-out-net-foundation-on-net-rocks.md │ ├── come-talk-to-us-a-net-foundation-face-to-face.md │ ├── dats-2020-first-sponsor.md │ ├── dats-2020-gold-sponsor.md │ ├── director-election-2020-candidate-interviews.md │ ├── director-election-2020-voting-starts-tomorrow.md │ ├── events-dnfsummit-2022.md │ ├── google-join-tsg.md │ ├── growing-the-net-ecosystem-through-shared-models-of-quality-confidence-and-support.md │ ├── imagesharp_update.md │ ├── international-tech-speakers-host-fundraiser-for-direct-relief-.md │ ├── kicking-off-campaign-2020.md │ ├── meet-your-advisory-council-bill-wagner.md │ ├── meet-your-advisory-council-daniel-roth.md │ ├── meet-your-advisory-council-phil-haack.md │ ├── meet-your-advisory-council-shaun-walker.md │ ├── microsoft-contributes-msbuild-engine-to-the-net-foundation.md │ ├── microsoft-hacktoberfest-2018-celebration-starting-today.md │ ├── net-foundation-advisory-council-call-for-public-comment.md │ ├── net-foundation-all-hands-fall-2020.md │ ├── net-foundation-april-2019-update.md │ ├── net-foundation-april-update.md │ ├── net-foundation-at-oscon-2019.md │ ├── net-foundation-august-2019-update.md │ ├── net-foundation-august-newsletter.md │ ├── net-foundation-august-update.md │ ├── net-foundation-board-of-directors-election-results-2020.md │ ├── net-foundation-board-of-directors-election-results.md │ ├── net-foundation-december-2019-update.md │ ├── net-foundation-december-update.md │ ├── net-foundation-election-2020-nominations-open.md │ ├── net-foundation-election-2021-nominations-open.md │ ├── net-foundation-election-results-2021.md │ ├── net-foundation-elections-closing-soon-heres-the-faq-to-help-you-cast-your-vote.md │ ├── net-foundation-established-to-foster-open-development.md │ ├── net-foundation-face-to-face-questions.md │ ├── net-foundation-february-2019-update.md │ ├── net-foundation-february-march-update.md │ ├── net-foundation-february-update.md │ ├── net-foundation-january-2020-update.md │ ├── net-foundation-january-february-2021-update.md │ ├── net-foundation-january-update.md │ ├── net-foundation-july-2019-update.md │ ├── net-foundation-july-august-2020-update.md │ ├── net-foundation-july-update.md │ ├── net-foundation-june-2019-update.md │ ├── net-foundation-june-july-2020-update.md │ ├── net-foundation-june-update.md │ ├── net-foundation-march-2019-update.md │ ├── net-foundation-march-2020-update.md │ ├── net-foundation-march-april-2021-update.md │ ├── net-foundation-march-update.md │ ├── net-foundation-may-2019-update.md │ ├── net-foundation-may-2020-update.md │ ├── net-foundation-may-june-2021-update.md │ ├── net-foundation-november-2019-update.md │ ├── net-foundation-november-december-2020-update.md │ ├── net-foundation-november-update.md │ ├── net-foundation-october-2019-update.md │ ├── net-foundation-october-update.md │ ├── net-foundation-september-2019-update.md │ ├── net-foundation-september-october-2020-update.md │ ├── net-foundation-september-update.md │ ├── net-foundation-update-newsletter-project-updates-and-links.md │ ├── net-foundation-welcomes-executive-director-martin-woodward.md │ ├── net-summer-hackfest-update-1-session-project-announcements.md │ ├── net-summer-hackfest-update-session-1-progress-session-2-announcements.md │ ├── net-summer-hackfest-update-session-2-wrap-up.md │ ├── net-summer-hackfest-update-session-3-underway.md │ ├── new-community-director-claire-novotny.md │ ├── open-live-writer.md │ ├── protobuild-welcome.md │ ├── pwned-passwords-is-now-open-source.md │ ├── rethinking-project-maturity-as-a-community-process.md │ ├── rx-net-welcome.md │ ├── samsung-join-tsg.md │ ├── state-of-the-net-foundation-summer-2020.md │ ├── the-net-foundation-adds-asp-net-vnext-to-its-stewardship.md │ ├── the-net-foundation-adds-three-new-projects.md │ ├── tizen-tools-preview-2.md │ ├── tsg-welcome.md │ ├── wcf-is-open-source.md │ ├── welcome-akka-net.md │ ├── welcome-automapper-to-the-net-foundation.md │ ├── welcome-benchmarkdotnet.md │ ├── welcome-dnn-nunit-ironpython-mvvmcross-sourcelink-ilmerge-and-humanizer-to-the-net-foundation.md │ ├── welcome-jsonnet-to-the-net-foundation.md │ ├── welcome-peachpie-compiler-platform-to-the-net-foundation.md │ ├── welcome-polly.md │ ├── welcome-rachel.md │ ├── welcome-reactiveui-to-the-net-foundation.md │ ├── welcome-steeltoe-to-the-net-foundation.md │ ├── welcome-telerik-ui-for-uwp.md │ ├── welcome-windows-template-studio.md │ ├── welcomeworldwidetelescope.md │ ├── welcoming-aws.md │ ├── welcoming-claire-novotny-as-the-new-executive-director-of-net-foundation-.md │ ├── welcoming-core-wcf-to-the-net-foundation.md │ ├── welcoming-devexpress-to-the-net-foundation-as-a-corporate-sponsor.md │ ├── welcoming-dotvvm-to-the-net-foundation.md │ ├── welcoming-imagesharp-anglesharp-and-coverlet-to-the-net-foundation.md │ ├── welcoming-infernet-to-the-net-foundation.md │ ├── welcoming-jon-galloway-as-the-new-executive-director-of-the-net-foundation.md │ ├── welcoming-miniprofiler-stackexchangeredis-protobuf-net-and-sign-service.md │ ├── welcoming-neo-to-the-net-foundation.md │ ├── welcoming-odata-to-the-net-foundation.md │ ├── welcoming-okta-and-volosoft-as-corporate-sponsors.md │ ├── welcoming-symbolsource-to-the-net-foundation.md │ ├── welcoming-the-newly-minted-advisory-net-foundation-advisory-council-members.md │ ├── welcoming-xamarin-to-the-net-foundation.md │ ├── wg-outreach-february.md │ ├── wg-outreach-january.md │ ├── wg-outreach-join-us.md │ ├── wg-outreach-march.md │ ├── wg-outreach-proposals.md │ ├── why-you-should-join-part-1-join-as-a-voting-member.md │ ├── why-you-should-join-part-2-corporate-sponsor.md │ ├── why-you-should-join-part-3-become-a-board-member.md │ ├── wix-toolset-welcome.md │ └── wwt-competition-2016.md ├── community ├── committeelist │ ├── education.yaml │ ├── maintainers.yaml │ ├── marketing.yaml │ ├── membership.yaml │ ├── outreach.yaml │ ├── projects.yaml │ ├── sponsorship.yaml │ └── template.yaml ├── committees.cshtml ├── get-involved.cshtml ├── index.cshtml ├── meetups.cshtml ├── presentations │ ├── 250-aspnet-core-samples.md │ ├── _directory.yaml │ ├── akkanet-bootcamp.md │ ├── aspnet-core-a-z-e-book.md │ ├── aspnet-core-app-workshop.md │ ├── aspnet-core-for-beginners.md │ ├── aspnet-core-overview-workshop.md │ ├── aspnetcore-architecture-ebook.md │ ├── aws-cdk-workshop.md │ ├── blazor-ebook.md │ ├── blazor-workshop.md │ ├── cloud-native-ebook.md │ ├── csharp-workshop.md │ ├── dapr-ebook.md │ ├── devops-aspnetcore-ebook.md │ ├── devops-for-containerized-apps-ebook.md │ ├── dotnet-maui-workshop.md │ ├── dotnet-maui.md │ ├── grpc-ebook.md │ ├── microservices-ebook.md │ ├── net-core-workshop.md │ ├── net-today-and-tomorrow.md │ ├── porting-aspnet-to-aspnetcore-ebook.md │ ├── serverless-apps-ebook.md │ ├── the-little-aspnet-core-book.md │ └── what-is-net.md ├── resources.cshtml ├── speakers │ ├── SimonBoddy.md │ ├── XperiAndri.md │ ├── _Layout.cshtml │ ├── _SpeakerLayout.cshtml │ ├── _ViewStart.cshtml │ ├── aaron-powell.md │ ├── abdul-rehman-aftab.md │ ├── abdullah-hamed.md │ ├── abhishek-siddhu.md │ ├── adam-furmanek.md │ ├── add │ │ └── index.cshtml │ ├── adora-nwodo.md │ ├── aimee-knight.md │ ├── albert-tanure.md │ ├── alberto-diaz-martin.md │ ├── alessandro-melchiori.md │ ├── alexander-slotte.md │ ├── alexej-sommer.md │ ├── alexey-nikiforov.md │ ├── allan-ritchie.md │ ├── alyssa-nicoll.md │ ├── amiee-lo.md │ ├── amy-kapernick.md │ ├── andre-secco.md │ ├── andrea-angella.md │ ├── andrea-tosato.md │ ├── andrew-nosenko.md │ ├── andrew-stellman.md │ ├── andrey-gubskiy.md │ ├── aneesh-gopalakrishnan.md │ ├── ankit-sharma.md │ ├── antti-k-koskela.md │ ├── apple-rachanee-saengkrajai.md │ ├── arafat-tehsin.md │ ├── armando-lacerda.md │ ├── arturo-nereu.md │ ├── asbjorn-ulsberg.md │ ├── ashirwad-satapathi.md │ ├── augustoproiete.md │ ├── banditoth.md │ ├── barry-s-stahl.md │ ├── ben-ishiyama-levy.md │ ├── benjamin-abt.md │ ├── bervianto-leo-pratama.md │ ├── bill-penberthy.md │ ├── blake-niemyjski.md │ ├── bogdan-bujdea.md │ ├── boguslaw-blonski.md │ ├── bohdan-benetskyi.md │ ├── borislav-ivanov.md │ ├── brady-gaster.md │ ├── branimir-giurov.md │ ├── brian-gorman.md │ ├── bruno-bacelar.md │ ├── bruno-barrette.md │ ├── bruno-capuano.md │ ├── bruno-garcia.md │ ├── bryn-lewis.md │ ├── cameron-presley.md │ ├── carl-sargunar.md │ ├── carlos-mendible.md │ ├── carole-logan.md │ ├── catalin-gheorghiu.md │ ├── caterina-rindi-speaker.md │ ├── charles-nurse.md │ ├── chris-ayers.md │ ├── chris-woodruff.md │ ├── christian-weyer.md │ ├── christopher-maneu.md │ ├── christos-matskas.md │ ├── ciaran-o-donnell.md │ ├── civera-cristian.md │ ├── codrina-merigo.md │ ├── cory-house.md │ ├── damian-antonowicz.md │ ├── damir-arh.md │ ├── damir-dobric │ ├── dan-siegel.md │ ├── daniel-costea.md │ ├── daniele-bochicchio.md │ ├── daren-may.md │ ├── daron-yondem.md │ ├── dave-paquette.md │ ├── david-babayan.md │ ├── david-driscoll.md │ ├── david-gardiner.md │ ├── david-pine.md │ ├── david-poindexter.md │ ├── david-rodriguez.md │ ├── david-walker.md │ ├── david-wengier.md │ ├── david-whitney.md │ ├── davide-bellone.md │ ├── davide-zordan.md │ ├── debasis-saha.md │ ├── denis-voituron.md │ ├── dennes-torres.md │ ├── dmitry-lyalin.md │ ├── dr-holger-schwichtenberg.md │ ├── drew-noakes.md │ ├── dror-helper.md │ ├── duane-newman.md │ ├── dustin-ewers.md │ ├── edgar-sanchez.md │ ├── edin-kapic.md │ ├── eduard-keilholz.md │ ├── eduard-tomas.md │ ├── eduardo-pires.md │ ├── edwin-van-wijk.md │ ├── elahn-danee-harris.md │ ├── elton-stoneman.md │ ├── eran-stiller.md │ ├── ercin-dedeoglu.md │ ├── eric-j-fisher.md │ ├── eric-potter.md │ ├── erik-ejlskov-jensen.md │ ├── erik-schierboom.md │ ├── filip-ekberg.md │ ├── fiqri-ismail.md │ ├── fons-sonnemans.md │ ├── francois-bouteruche.md │ ├── francois-raminosona.md │ ├── geoffrey-huntley.md │ ├── george-chang.md │ ├── george-stocker.md │ ├── georgia-kalyva.md │ ├── gerald-versluis.md │ ├── gergana-young.md │ ├── giancarlo-lelli.md │ ├── gianni-rosa-gallina.md │ ├── gil-fink.md │ ├── ginny-caughey-registration.md │ ├── giovanni-bassi.md │ ├── giulio-vian.md │ ├── goh-chun-lin.md │ ├── greg-levenhagen.md │ ├── greg-shackles.md │ ├── gustavo-bellini-bigardi.md │ ├── guy-barrette.md │ ├── haitham-shaddad.md │ ├── hakan-silfvernagel.md │ ├── halil-ibrahim-kalkan.md │ ├── hamida-rebai.md │ ├── harishchandra-ukirade.md │ ├── heather-wilde.md │ ├── hector-minaya.md │ ├── hugo-miguel-salva-barona.md │ ├── hussain-abbasi.md │ ├── ian-cooper.md │ ├── ignat-andrei.md │ ├── igor-labutin.md │ ├── index.cshtml │ ├── irina-scurtu.md │ ├── isaac-levin.md │ ├── ivano-scifoni.md │ ├── jaliya-udagedara.md │ ├── james-millar.md │ ├── james-turner.md │ ├── james-yeung.md │ ├── jamie-howarth.md │ ├── jamie-taylor.md │ ├── jan-de-vries.md │ ├── jan-hajek.md │ ├── jared-rhodes.md │ ├── jasmine-greenaway.md │ ├── jason-bock.md │ ├── javier-suarez.md │ ├── jeffrey-palermo.md │ ├── jiadong-chen.md │ ├── jim-wilcox.md │ ├── jiri-cincura.md │ ├── jk.md │ ├── joao-antunes.md │ ├── jochen-kirstaetter.md │ ├── joel-hulen.md │ ├── johan-smarius.md │ ├── john-callaway.md │ ├── johnny-hooyberghs.md │ ├── jon-galloway.md │ ├── jon-limjap.md │ ├── jon-sequeira.md │ ├── jon-skeet.md │ ├── jonathan-j-tower.md │ ├── jonathan-mezach.md │ ├── jonathan-wood.md │ ├── jorge-levy.md │ ├── joseph-j-guadagno.md │ ├── juanca-linares.md │ ├── juergen-gutsch.md │ ├── julianocustodio.md │ ├── jung-hyun-nam.md │ ├── kalpesh-satasiya.md │ ├── kayla-cinnamon.md │ ├── kendra-havens.md │ ├── kenny-robinson.md │ ├── kevin-bost.md │ ├── kevin-dockx.md │ ├── kevin-gosse.md │ ├── kevin-griffin.md │ ├── kevin-smith.md │ ├── kundan-karma.md │ ├── lance-mccarthy.md │ ├── lars-klint.md │ ├── laurent-bugnion.md │ ├── lautaro-carro.md │ ├── layla-porter.md │ ├── lee-englestone.md │ ├── lee-richardson.md │ ├── leonardo-micheloni.md │ ├── leslie-richardson.md │ ├── lex-li.md │ ├── lorenzo-barbieri.md │ ├── luis-beltran.md │ ├── luis-manez.md │ ├── luis-matos.md │ ├── luis-quintanilla.md │ ├── maarten-balliauw.md │ ├── maddy-leger.md │ ├── mahmoud-ali.md │ ├── manuel-meyer.md │ ├── manuel-sanchez-rodriguez.md │ ├── maourice-gonzalez.md │ ├── marcel-de-vries.md │ ├── marco-cecconi.md │ ├── marco-dal-pino.md │ ├── marco-de-sanctis.md │ ├── marco-minerva.md │ ├── mark-michaelis.md │ ├── mark-rendle.md │ ├── martin-beeby.md │ ├── martin-finkel.md │ ├── martin-ullrich.md │ ├── martin-zikmund.md │ ├── matteo-emili.md │ ├── matteo-pagani.md │ ├── matteo-tumiati.md │ ├── matthew-d-groves.md │ ├── mauro-bennici.md │ ├── melissa-houghton.md │ ├── mert-yeter.md │ ├── michael-a-hawker.md │ ├── michael-dera.md │ ├── michael-john-pena.md │ ├── michael-jolley.md │ ├── michael-staib.md │ ├── michael-washington.md │ ├── michal-jankowski.md │ ├── michaël-hompus.md │ ├── miguel-bernard.md │ ├── miguel-ramos.md │ ├── mikayla-hutchinson.md │ ├── miroslav-popovic.md │ ├── mitchel-sellers.md │ ├── mohamad-lawand.md │ ├── nick-randolph.md │ ├── nicola-iarocci.md │ ├── nicolas-martin-paez.md │ ├── niel_zeeman.md │ ├── niels-patrick-swimberghe.md │ ├── nilesh-gule.md │ ├── nish-anil.md │ ├── nuri-halperin.md │ ├── oleksandr-krakovetskyi.md │ ├── olga-nelioubov.md │ ├── olivier-dahan.md │ ├── pandiyan-murugan.md │ ├── paulo-morgado.md │ ├── pete-gallagher.md │ ├── peter-shawty-shaw-add.md │ ├── peter-toonen.md │ ├── piti-fyi-champeethong.md │ ├── poornima-nayar │ ├── poy-chang.md │ ├── rafael-ferreira-dos-santos.md │ ├── rene-schulte.md │ ├── ricardo-santos.md │ ├── rickvdbosch.md │ ├── rishabh-verma.md │ ├── rob-richardson.md │ ├── robert-boedigheimer.md │ ├── robert-haken.md │ ├── roberto-freato.md │ ├── rockford-lhotka.md │ ├── rodrigo-diaz-concha.md │ ├── roman-provaznik.md │ ├── ronald-mariah.md │ ├── s-ravi-kumar.md │ ├── sam-rueby.md │ ├── samuel-adranyi.md │ ├── sander-molenkamp.md │ ├── sanuka-wijegunaratne.md │ ├── sarah-dutkiewicz.md │ ├── sarah-kaiser.md │ ├── sarah-sexton.md │ ├── savino-carlone.md │ ├── scott-addie.md │ ├── scott-dorman.md │ ├── scott-kuhl.md │ ├── sean-killeen.md │ ├── sean-stride.md │ ├── sebastian-leonardo-perez.md │ ├── sebastien-bovo.md │ ├── sergio-parra-guerra.md │ ├── shaun-walker.md │ ├── shawn-wildermuth.md │ ├── shay-rojansky.md │ ├── simon-van-der-meer.md │ ├── sirinat-paphatsirinatthi.md │ ├── somnath-shukla.md │ ├── sophie-obomighie.md │ ├── stefan_jokull.md │ ├── stefano-d-antonio.md │ ├── stefano-tempesta.md │ ├── steve-ardalis-smith.md │ ├── steve-bilogan.md │ ├── steve-collins.md │ ├── steve-desmond.md │ ├── steve-gordon.md │ ├── stratos-kourtzanidis.md │ ├── suresh-dasari.md │ ├── sven-malvik.md │ ├── swaminathan-vetri.md │ ├── sweekriti-satpathy.md │ ├── tamas-deme.md │ ├── thiago-bertuzzi.md │ ├── thimo-buchheister.md │ ├── thorsten-hans.md │ ├── tidjani-belmansour.md │ ├── timmy-kokke.md │ ├── tobias-fenster.md │ ├── tom-moore.md │ ├── tomasz-peczek.md │ ├── udokaku-ugochukwu.md │ ├── valerio-de-sanctis.md │ ├── veronika-kolesnikova.md │ ├── vitor-miguel-paulino.md │ ├── vivien-fabing.md │ ├── vlad-iliescu.md │ ├── vorapat-nicklamai-guide-.md │ ├── wesley-cabus.md │ ├── will-huang.md │ ├── will-strohl.md │ └── will-velida.md └── virtual-user-group.cshtml ├── corporate-sponsors ├── _directory.yaml ├── aws.md ├── devexpress.md ├── digicert.md ├── endjin.md ├── microsoft.md ├── okta.md ├── progress-telerik.md ├── uno.md ├── vmware.md └── volosoft.md ├── css ├── blog-common.scss ├── home.scss └── style.scss ├── education └── index.cshtml ├── example.md ├── img ├── DATS-banner.jpg ├── DATS-banner.png ├── DATS_Horz_WhiteOrange.png ├── Ellipse_1.png ├── Icon-Resources.svg ├── JetBrains.png ├── Layer 15.png ├── MembershipApplication.svg ├── Microsoft.png ├── Red-Hat.png ├── Samsung.png ├── Shape 2.png ├── Unity.png ├── WorkingGroups.svg ├── announcing-speakers-bureau-filtering.jpg ├── announcing-speakers-bureau-map.jpg ├── art-ball-shaped-blur-326036.png ├── building_icon.png ├── bullhorn.png ├── calendar.png ├── chat.png ├── comp.png ├── developers_icon.png ├── dotNetFoundationHorizontal.png ├── dotNetFoundationHorizontal.svg ├── dot_bot.png ├── dotnetconf2019.jpg ├── f2f-long.jpg ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── favicon.png │ ├── favicon.svg │ ├── mstile-150x150.png │ └── safari-pinned-tab.svg ├── github_icon.png ├── globe_icon.png ├── google.png ├── home_hero.jpg ├── home_hero.webp ├── ic_fluent_calendar_24_regular.svg ├── ic_fluent_earth_24_regular.svg ├── ic_fluent_globe_video_24_regular.svg ├── ic_fluent_globe_video_24_regular_white.svg ├── ic_fluent_people_audience_24_regular.svg ├── ic_fluent_people_community_24_regular.svg ├── ic_fluent_people_community_add_24_regular.svg ├── ic_fluent_reading_list_24_regular.svg ├── ic_fluent_video_clip_24_regular.svg ├── ladies_bg.png ├── ladies_bg.webp ├── logo_big.png ├── logo_big.svg ├── logo_v4.svg ├── meetup_hello.svg ├── meetup_logo.png ├── meetup_map.png ├── meetup_map.webp ├── meetup_map_new.png ├── member_projects_icon.png ├── outreach-needs-you.jpg ├── swag.png ├── swag_background.png ├── swag_background.webp ├── whiteboard_guy_with_dotbot_.png └── whiteboard_guy_with_dotbot_.webp ├── index.cshtml ├── js ├── cookie-consent.3.0.0.js ├── counter.js ├── functions.js ├── home.js ├── jquery.counterup.min.js ├── projects.js ├── rss.global.min.js └── virtualusergroup.js ├── manifest.json ├── member ├── become-a-member.cshtml ├── corporate-membership.cshtml ├── corporate-sponsors.cshtml └── index.cshtml ├── news.cshtml ├── projects ├── archived-projects.cshtml ├── data │ ├── CoApp.md │ ├── ConferenceXP.md │ ├── ILMerge.md │ ├── LTAF.md │ ├── NMExperts.md │ ├── TerraFX.md │ ├── _Layout.cshtml │ ├── _ViewStart.cshtml │ ├── _directory.yaml │ ├── akkadotnet.md │ ├── anglesharp.md │ ├── ant-design-blazor.md │ ├── asp.net-signalr.md │ ├── aspnet-4.md │ ├── aspnet-ajax.md │ ├── aspnet-api-versioning.md │ ├── aspnet-core.md │ ├── aspnet.md │ ├── aspnetboilerplate.md │ ├── automapper.md │ ├── avalonia.md │ ├── azure-sdk.md │ ├── azure-webjobs-sdk.md │ ├── benchmarkdotnet.md │ ├── bunit.md │ ├── cake.md │ ├── channels.md │ ├── chem4word.md │ ├── chronozoom.md │ ├── clangsharp.md │ ├── codecontracts.md │ ├── conceptual-docs.md │ ├── corewcf.md │ ├── corewf.md │ ├── couchbase-lite-for-.net.md │ ├── coverlet.md │ ├── csharp-standard.md │ ├── data-grid-extensions.md │ ├── dnn-platform.md │ ├── docker-dotnet.md │ ├── dotnet-api-docs.md │ ├── dotnet-compiler-platform.md │ ├── dotnet-maui.md │ ├── dotnet-micro-framework.md │ ├── dotnet-sdk-for-hadoop.md │ ├── dotnet-spark.md │ ├── dotnetopenauth.md │ ├── dotnext.md │ ├── dotvvm.md │ ├── elsa-workflows.md │ ├── entity-framework.md │ ├── esquio.md │ ├── facebooksdk.md │ ├── fido2-net-lib.md │ ├── finbuckle.multitenant.md │ ├── flubucore.md │ ├── fluentvalidation.md │ ├── hibp.md │ ├── humanizer.md │ ├── identitymanager.md │ ├── identitymodel.md │ ├── identityserver.md │ ├── imagesharp.md │ ├── infer.md │ ├── ironpython.md │ ├── jsondotnet.md │ ├── kerberos-net.md │ ├── kudu.md │ ├── linq2db.md │ ├── llilc.md │ ├── llvmsharp.md │ ├── mahapps.md │ ├── mailkit.md │ ├── mef.md │ ├── microsoft-web-protection-library.md │ ├── mimekit.md │ ├── mlnet.md │ ├── mono.cecil.md │ ├── mono.md │ ├── mqttnet.md │ ├── msbuild.md │ ├── mvccontrib.md │ ├── mvvm-light-toolkit.md │ ├── mvvmcross.md │ ├── nancy.md │ ├── nanoframework.md │ ├── nearforums.md │ ├── neoproject.md │ ├── nerdbank-gitversioning.md │ ├── netbio.md │ ├── netcore.md │ ├── nuget-package-explorer.md │ ├── nuget-trends.md │ ├── nuget.md │ ├── nunit.md │ ├── nupattern.md │ ├── odata-connected-service.md │ ├── odataobjectivec.md │ ├── odatavalidationservicetool.md │ ├── omnisharp.md │ ├── open-live-writer.md │ ├── open-xml-sdk.md │ ├── openriaservice.md │ ├── oqtane.md │ ├── orchard.md │ ├── orchardcms.md │ ├── orleans.md │ ├── owin-authentication-middleware.md │ ├── peachpie.md │ ├── pinvoke.md │ ├── piranha-cms.md │ ├── polly.md │ ├── protobuild.md │ ├── python.net.md │ ├── reactive-extensions.md │ ├── reactiveui.md │ ├── reactnative.md │ ├── restsharp.md │ ├── resx-resource-manager.md │ ├── salesforce-toolkits.md │ ├── samples.md │ ├── signservice.md │ ├── silk.net.md │ ├── sourcelink-legacy.md │ ├── sourcelink.md │ ├── spectre-console.md │ ├── steeltoe.md │ ├── stride.md │ ├── system.drawing.md │ ├── telerik-ui-for-uwp.md │ ├── torchsharp.md │ ├── unitycontainer.md │ ├── verify.md │ ├── wcf.md │ ├── webformsmvp.md │ ├── websitepanel.md │ ├── windows-phone-toolkit.md │ ├── windows-template-studio.md │ ├── windowscommunitytoolkit.md │ ├── winforms.md │ ├── wixtoolset.md │ ├── worldwide-telescope.md │ ├── wpf.md │ ├── xamarin.android.md │ ├── xamarin.auth.md │ ├── xamarin.forms.md │ ├── xamarin.macios.md │ ├── xamarin.mobile.md │ ├── xamarinandroidsupport.md │ ├── xamarinapisios.md │ ├── xamarincommunitytoolkit.md │ ├── xamarinfacebook.md │ ├── xamaringoogleplay.md │ └── xunit.md ├── index.cshtml ├── net-foundation-project-committee.cshtml ├── spotlight.cshtml ├── submit.cshtml └── why-join.cshtml ├── robots.txt └── routes.json /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # editorconfig.org 4 | 5 | root = true 6 | 7 | 8 | [*] 9 | trim_trailing_whitespace = false 10 | indent_style = space 11 | 12 | 13 | # Code files 14 | [*.{cs,csx,vb,vbx}] 15 | indent_size = 4 16 | insert_final_newline = true 17 | charset = utf-8-bom 18 | 19 | # Xml project files 20 | [*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}] 21 | indent_size = 2 22 | 23 | # Markdown 24 | [*.md] 25 | indent_size = 2 26 | trim_trailing_whitespace = false 27 | 28 | # Xml config files 29 | [*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct}] 30 | indent_size = 2 31 | 32 | # JSON files 33 | [*.json] 34 | indent_size = 2 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: Newsletter Update 4 | url: https://github.com/dotnet-foundation/website/edit/master/input/blog/posts/_current-newsletter-draft.md 5 | about: Newsletter updates are handled via editing the current newsletter draft file. 6 | - name: Election Question 7 | url: https://github.com/dotnet-foundation/Home/discussions 8 | about: Do you have a question for one of the candidates running for the Board of Directors? Ask it here! -------------------------------------------------------------------------------- /Analyzers/ValidateSpeakerPronouns.cs: -------------------------------------------------------------------------------- 1 | using Statiq.Common; 2 | using System.Linq; 3 | 4 | namespace DotnetFoundationWeb 5 | { 6 | public class ValidateSpeakerPronouns : SpeakerDataAnalyzer 7 | { 8 | protected override void AnalyzeSpeakerData(IDocument document, IAnalyzerContext context) 9 | { 10 | string pronouns = document.GetString(SiteKeys.Pronouns); 11 | if (!pronouns.IsNullOrEmpty() && (pronouns.Count(x => x == '/') != 1 || pronouns.Any(x => x != '/' && (!char.IsLetter(x) || !char.IsLower(x))))) 12 | { 13 | context.AddAnalyzerResult(document, $"Preferred gender pronouns should be of the form [subject]/[object] in lowercase (I.e. \"they/them\")"); 14 | } 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | This project has adopted the code of conduct defined by the Contributor Covenant 4 | to clarify expected behavior in our community. 5 | For more information, see the [.NET Foundation Code of Conduct](https://dotnetfoundation.org/code-of-conduct). -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Build": { 4 | "commandName": "Project", 5 | "commandLineArgs": "preview" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /SpeakerImage.cs: -------------------------------------------------------------------------------- 1 | using Statiq.Common; 2 | using System.Collections.Generic; 3 | 4 | namespace DotnetFoundationWeb 5 | { 6 | // Sets the speaker image metadata if not already provided 7 | public class SpeakerImage : SyncModule 8 | { 9 | protected override IEnumerable ExecuteInput(IDocument input, IExecutionContext context) => 10 | input.GetString(SiteKeys.Image).IsNullOrWhiteSpace() 11 | ? input 12 | .Clone(new MetadataItems 13 | { 14 | { SiteKeys.Image, input.ContainsKey(SiteKeys.GitHub) ? input.GetString(SiteKeys.GitHub).TrimEnd('/') + ".png" : "/img/dot_bot.png" } 15 | }) 16 | .Yield() 17 | : input 18 | .Yield(); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- 1 | trigger: 2 | - master 3 | 4 | pr: 5 | - master 6 | 7 | pool: 8 | vmImage: 'ubuntu-latest' 9 | 10 | variables: 11 | BuildConfiguration: Release 12 | 13 | steps: 14 | 15 | - task: DotNetCoreCLI@2 16 | inputs: 17 | command: run 18 | projects: "*.csproj" 19 | arguments: -c $(BuildConfiguration) 20 | displayName: Build and Run Statiq 21 | 22 | - publish: output 23 | artifact: website 24 | displayName: Publish Artifacts -------------------------------------------------------------------------------- /dnfwebsite.code-workspace: -------------------------------------------------------------------------------- 1 | { 2 | "folders": [ 3 | { 4 | "path": "." 5 | } 6 | ], 7 | "settings": {} 8 | } -------------------------------------------------------------------------------- /functions/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0" 3 | } -------------------------------------------------------------------------------- /functions/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "commonjs", 4 | "target": "es6", 5 | "outDir": "../input/api", 6 | "rootDir": ".", 7 | "sourceMap": true, 8 | "strict": false 9 | } 10 | } -------------------------------------------------------------------------------- /input/CNAME: -------------------------------------------------------------------------------- 1 | staging.dotnetfoundation.org 2 | -------------------------------------------------------------------------------- /input/_BasicPageLayout.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = @"/_Layout.cshtml"; 3 | } 4 | 5 | 6 |
7 |
8 |
9 |
10 | @RenderBody() 11 |
12 |
13 |
14 |
-------------------------------------------------------------------------------- /input/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using Statiq.Common 2 | @using Statiq.Web 3 | @using DotnetFoundationWeb 4 | 5 | @inherits Statiq.Razor.StatiqRazorPage 6 | -------------------------------------------------------------------------------- /input/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = @"/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /input/_partials/_corporate-sponsor-logo-card.cshtml: -------------------------------------------------------------------------------- 1 | @inherits Statiq.Razor.StatiqRazorPage> 2 | 3 | @foreach (IDocument sponsor in Model) 4 | { 5 |
6 |
7 | @if (!String.IsNullOrEmpty(sponsor.GetString(SiteKeys.Logo))) 8 | { 9 | 10 | @sponsor.GetString(SiteKeys.Name) 11 | 12 | } 13 | else 14 | { 15 | Default Dot Bot Image 16 | } 17 |
18 |
19 | } -------------------------------------------------------------------------------- /input/_redirects: -------------------------------------------------------------------------------- 1 | /api/rss/* /api/rss/index.rss 200 2 | /code-of-conduct /about/code-of-conduct 3 | -------------------------------------------------------------------------------- /input/about/board/fy22/rich-lander.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Rich Lander 3 | twitter: runfaster2000 4 | image: rich-lander.jpg 5 | company: Microsoft 6 | location: United States 7 | elected: true 8 | layout: _BasicPageLayout 9 | --- 10 | 11 | 12 | -------------------------------------------------------------------------------- /input/about/board/fy23/rich-lander.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Rich Lander 3 | twitter: runfaster2000 4 | image: rich-lander.jpg 5 | company: Microsoft 6 | location: United States 7 | elected: true 8 | layout: _BasicPageLayout 9 | --- 10 | 11 | 12 | -------------------------------------------------------------------------------- /input/about/budget/fy20-balance-sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/about/budget/fy20-balance-sheet.png -------------------------------------------------------------------------------- /input/about/budget/fy20-pie-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/about/budget/fy20-pie-chart.png -------------------------------------------------------------------------------- /input/about/budget/fy20-pl-statement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/about/budget/fy20-pl-statement.pdf -------------------------------------------------------------------------------- /input/about/election/campaign-2019/_directory.yaml: -------------------------------------------------------------------------------- 1 | Analyzers: 2 | - ValidateRelativeLinks=None -------------------------------------------------------------------------------- /input/about/election/campaign-2019/lea-wegner.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Lea Wegner 3 | image: campaign-2019/7fdddbc7-57d2-4ece-9f64-edaae7c0521b.jpg 4 | --- 5 | 6 | # .NET Foundation Campaign: Lea Wegner 7 | 8 | ## Why I'm Running 9 | Hey, i'm Lea Wegner and i'm a dual computer science student from germany. 10 | The dual study system gives me the oppurtunity to work in the software industry since my beginning in 2017. To be honest i did not worked with .NET at this point, but i'm interested in learning new things and can bring you my unimpaired opinions, the view of a student and a newcomer, and the knowledge about how it is to work in germany as a young woman in the software industry. 11 | 12 | ## Contact Information 13 | * Email: lea_wegner@gmx.de 14 | -------------------------------------------------------------------------------- /input/about/election/campaign-2020/_directory.yaml: -------------------------------------------------------------------------------- 1 | layout: "/_BasicPageLayout.cshtml" -------------------------------------------------------------------------------- /input/about/election/campaign-2020/ben-adams.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Ben Adams 3 | twitter: ben_a_adams 4 | image: ben-adams.jpg 5 | excluded: true 6 | --- 7 | 8 | 9 | -------------------------------------------------------------------------------- /input/about/election/campaign-2021/_directory.yaml: -------------------------------------------------------------------------------- 1 | layout: "/_BasicPageLayout.cshtml" -------------------------------------------------------------------------------- /input/about/election/campaign-2021/javier-lozano.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Javier Lozano 3 | twitter: 4 | image: 5 | excluded: 6 | --- 7 | 8 | # .NET Foundation Campaign: Javier Lozano 9 | 10 | 11 | 12 | ## Coming Soon -------------------------------------------------------------------------------- /input/about/election/campaign-2022/_directory.yaml: -------------------------------------------------------------------------------- 1 | layout: "/_BasicPageLayout.cshtml" 2 | -------------------------------------------------------------------------------- /input/about/election/campaign-2022/iris_classon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/about/election/campaign-2022/iris_classon.jpg -------------------------------------------------------------------------------- /input/about/election/campaign-2022/jeffrey-chilberto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/about/election/campaign-2022/jeffrey-chilberto.jpg -------------------------------------------------------------------------------- /input/about/election/campaign-2022/jessica-white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/about/election/campaign-2022/jessica-white.jpg -------------------------------------------------------------------------------- /input/about/election/campaign-2022/poornima-nayar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/about/election/campaign-2022/poornima-nayar.jpg -------------------------------------------------------------------------------- /input/about/election/campaign-2022/rainer-stropek.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/about/election/campaign-2022/rainer-stropek.jpg -------------------------------------------------------------------------------- /input/about/election/example.md: -------------------------------------------------------------------------------- 1 | --- 2 | image: /img/dot_bot.png 3 | permalink: about/election/example 4 | --- 5 | 6 | # .NET Foundation Campaign: [Your Name Here] 7 | 8 | ## Why I'm Running 9 | Hi, I'm Example McExampleface, and I want to make a difference in the .NET Open Source community. 10 | 11 | I think we really need to focus on the student community. If elected, I'm going to work hard to 12 | get students involved. 13 | 14 | ## My .NET Open Source Contributions 15 | I have lead the nExample project for the past few years. 16 | 17 | ## Links 18 | * [My blog](https://dotnetfoundation.org/blog) 19 | 20 | ## Contact Information 21 | * Twitter: [@dotnetfdn](https://twitter.com/dotnetfdn) 22 | * GitHub: [@dotnet](https://github.com/dotnet) 23 | -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2020/_directory.yaml: -------------------------------------------------------------------------------- 1 | RenderPostProcessTemplates: false 2 | ShouldOutput: false -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2020/iris-classon.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Iris Classon 3 | image: iris-classon.jpg 4 | twitter: irisclasson 5 | location: Sweden 6 | company: Greenbyte 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2020/jessica-white.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Jessica White 3 | image: jessica-white.jpg 4 | twitter: JessPWhite 5 | location: United Kingdom 6 | company: Experian Consumer Services 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2020/julie-lerman.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Julie Lerman 3 | image: julie-lerman.jpg 4 | twitter: julielerman 5 | location: United States 6 | company: The Data Farm 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2020/rabeb-othmani.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Rabeb Othmani 3 | image: rabeb-othmani.jpg 4 | twitter: Rabeb_Othmani 5 | location: United Kingdom 6 | company: Zebra Technologies 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2020/steve-smith.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Steve (Ardalis) Smith 3 | image: steve-smith.jpg 4 | twitter: ardalis 5 | location: United States 6 | company: Ardalis Services 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2021/_directory.yaml: -------------------------------------------------------------------------------- 1 | RenderPostProcessTemplates: false 2 | ShouldOutput: false -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2021/ben-day.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Benjamin Day 3 | image: ben-day.jpg 4 | twitter: benday 5 | location: United States 6 | company: Benjamin Day Consulting 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2021/dave-brock.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dave Brock 3 | image: dave-brock.jpg 4 | twitter: daveabrock 5 | location: United States 6 | company: CUNA Mutual Group 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2021/dhananjay-kumar.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Dhananjay Kumar 3 | image: dhananjay-kumar.jpg 4 | twitter: debug_mode 5 | location: India 6 | company: geek97 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2021/irina-scurtu.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Irina Scurtu 3 | image: irina-scurtu.jpg 4 | twitter: irina_scurtu 5 | location: Romania 6 | company: Endava 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2021/iris-classon.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Iris Classon 3 | image: iris-classon.jpg 4 | twitter: irisclasson 5 | location: Sweden 6 | company: Greenbyte 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2021/rabeb-othmani.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Rabeb Othmani 3 | image: rabeb-othmani.jpg 4 | twitter: Rabeb_Othmani 5 | location: United Kingdom 6 | company: Zebra Technologies 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2021/samidip-basu.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sam Basu 3 | image: sami-basu.jpg 4 | twitter: samidip 5 | location: United States 6 | company: Progress Software 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2022/_directory.yaml: -------------------------------------------------------------------------------- 1 | RenderPostProcessTemplates: false 2 | ShouldOutput: false -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2022/bill-wagner.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Bill Wagner 3 | image: bill-wagner.jpg 4 | twitter: billwagner 5 | location: United States 6 | company: Microsoft 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2022/layla-porter.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Layla Porter 3 | image: layla-porter.jpg 4 | twitter: LaylaCodesIt 5 | location: United Kingdom 6 | company: VMWare 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2022/stacey-cashmore.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Stacy Cashmore 3 | image: stacy-cashmore.jpg 4 | twitter: Stacy_Cash 5 | location: Netherlands 6 | company: Omniplan 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2022/tanner-gooding.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Tanner Gooding 3 | twitter: tannergooding 4 | location: United States 5 | company: Microsoft 6 | image: 7 | excluded: 8 | --- 9 | 10 | -------------------------------------------------------------------------------- /input/about/election/nomination-committee-2022/veronika-kolesnikova.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Veronika Kolesnikova 3 | image: veronika-kolesnikova.jpg 4 | twitter: veronika_dev1 5 | location: United States 6 | company: Liberty Mutual 7 | --- 8 | 9 | -------------------------------------------------------------------------------- /input/about/survey.cshtml: -------------------------------------------------------------------------------- 1 | --- 2 | title: .NET Foundation Survey 3 | permalink: /about/survey 4 | --- 5 | 6 |
7 |
8 |
9 |
10 |

11 | Thank you to everyone who took this year's survey! The survey was conducted via SurveyMonkey and you can view the reports here. The raw data is also available. 12 |

13 |
14 |
15 |
16 |
17 | -------------------------------------------------------------------------------- /input/about/team/_directory.yaml: -------------------------------------------------------------------------------- 1 | RenderPostProcessTemplates: false 2 | ShouldOutput: false -------------------------------------------------------------------------------- /input/about/team/chris-sfanos.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Chris Sfanos 3 | image: chris-sfanos.jpg 4 | order: 3 5 | twitter: 6 | --- 7 | 8 | I'm **Chris Sfanos**, Program Manager, helping get things done. 9 | -------------------------------------------------------------------------------- /input/about/team/eric-schneider.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Eric Schneider 3 | image: eric-schneider.jpg 4 | order: 1 5 | twitter: 6 | --- 7 | 8 | I’m **Eric Schneider**, Executive director of the .NET Foundation. I oversee operations, coordinate with the board, sponsors, and staff to help set the direction for the Foundation’s future. 9 | 10 | -------------------------------------------------------------------------------- /input/about/team/miklos-barkoczi.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Miklos Barkoczi 3 | image: miklos-barkoczi.png 4 | order: 2 5 | twitter: 6 | --- 7 | 8 | I'm **Miklos Barkoczi**, the Treasurer of the .NET Foundation. I'm the man with the check book. Be nice to me. What's twitter? 9 | -------------------------------------------------------------------------------- /input/api/.funcignore: -------------------------------------------------------------------------------- 1 | *.js.map 2 | *.ts 3 | .git* 4 | .vscode 5 | local.settings.json 6 | test 7 | tsconfig.json -------------------------------------------------------------------------------- /input/api/_directory.yaml: -------------------------------------------------------------------------------- 1 | ShouldOutput: true -------------------------------------------------------------------------------- /input/api/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "extensionBundle": { 4 | "id": "Microsoft.Azure.Functions.ExtensionBundle", 5 | "version": "[1.*, 2.0.0)" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /input/api/issues/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "authLevel": "anonymous", 5 | "type": "httpTrigger", 6 | "direction": "in", 7 | "name": "req", 8 | "methods": [ 9 | "get", 10 | "post" 11 | ] 12 | }, 13 | { 14 | "type": "http", 15 | "direction": "out", 16 | "name": "res" 17 | } 18 | ] 19 | } 20 | -------------------------------------------------------------------------------- /input/api/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "api", 3 | "version": "1.0.0", 4 | "description": "", 5 | "scripts": { 6 | "test": "echo \"No tests yet...\"" 7 | }, 8 | "dependencies": { 9 | "coffeescript": "~1.6.3", 10 | "@octokit/rest": "^17.11.0" 11 | }, 12 | "devDependencies": {} 13 | } 14 | -------------------------------------------------------------------------------- /input/api/project-spotlight/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "authLevel": "anonymous", 5 | "type": "httpTrigger", 6 | "direction": "in", 7 | "name": "req", 8 | "methods": [ 9 | "get" 10 | ] 11 | }, 12 | { 13 | "type": "http", 14 | "direction": "out", 15 | "name": "res" 16 | } 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /input/api/proxies.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json.schemastore.org/proxies", 3 | "proxies": {} 4 | } 5 | -------------------------------------------------------------------------------- /input/api/rss/function.json: -------------------------------------------------------------------------------- 1 | { 2 | "bindings": [ 3 | { 4 | "authLevel": "anonymous", 5 | "type": "httpTrigger", 6 | "direction": "in", 7 | "name": "req", 8 | "methods": [ 9 | "get" 10 | ] 11 | }, 12 | { 13 | "type": "http", 14 | "direction": "out", 15 | "name": "res" 16 | } 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /input/api/rss/index.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | 3 | module.exports = function (context, req) { 4 | var filepath = __dirname + '/index.rss' 5 | fs.readFile(filepath, 'utf8', function (err, content) { 6 | if (err) { 7 | context.log.error(err); 8 | context.done(err); 9 | } 10 | 11 | context.res = { 12 | status: 200, 13 | headers: { 14 | 'Content-Type': 'application/rss+xml' 15 | }, 16 | body: content 17 | }; 18 | context.done(); 19 | }); 20 | } -------------------------------------------------------------------------------- /input/api/rss/index.yaml: -------------------------------------------------------------------------------- 1 | FeedRss: true 2 | FeedSources: "blog/posts/*" 3 | FeedOrderKey: Published 4 | FeedOrderDescending: true -------------------------------------------------------------------------------- /input/assets/corporate-sponsors/Microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/corporate-sponsors/Microsoft.png -------------------------------------------------------------------------------- /input/assets/corporate-sponsors/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/corporate-sponsors/amazon.png -------------------------------------------------------------------------------- /input/assets/corporate-sponsors/devexpress-logo-2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/corporate-sponsors/devexpress-logo-2020.png -------------------------------------------------------------------------------- /input/assets/corporate-sponsors/endjin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/corporate-sponsors/endjin.png -------------------------------------------------------------------------------- /input/assets/corporate-sponsors/insight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/corporate-sponsors/insight.png -------------------------------------------------------------------------------- /input/assets/corporate-sponsors/okta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/corporate-sponsors/okta.png -------------------------------------------------------------------------------- /input/assets/corporate-sponsors/pivotal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/corporate-sponsors/pivotal.png -------------------------------------------------------------------------------- /input/assets/corporate-sponsors/progress-telerik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/corporate-sponsors/progress-telerik.png -------------------------------------------------------------------------------- /input/assets/corporate-sponsors/uno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/corporate-sponsors/uno.png -------------------------------------------------------------------------------- /input/assets/corporate-sponsors/vmware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/corporate-sponsors/vmware.png -------------------------------------------------------------------------------- /input/assets/corporate-sponsors/volosoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/corporate-sponsors/volosoft.png -------------------------------------------------------------------------------- /input/assets/documents/FY23-Sponsorship-Levels.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/documents/FY23-Sponsorship-Levels.pdf -------------------------------------------------------------------------------- /input/assets/documents/OnBoardingQuestionaire.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/documents/OnBoardingQuestionaire.docx -------------------------------------------------------------------------------- /input/assets/documents/net-foundation-advisory-council-proposal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/documents/net-foundation-advisory-council-proposal.pdf -------------------------------------------------------------------------------- /input/assets/members/ben-adams.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/ben-adams.jpg -------------------------------------------------------------------------------- /input/assets/members/ben-day.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/ben-day.jpg -------------------------------------------------------------------------------- /input/assets/members/beth-massi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/beth-massi.jpg -------------------------------------------------------------------------------- /input/assets/members/bill-wagner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/bill-wagner.jpg -------------------------------------------------------------------------------- /input/assets/members/brendan-forster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/brendan-forster.jpg -------------------------------------------------------------------------------- /input/assets/members/brian-jablonsky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/brian-jablonsky.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/02a016a5-1f38-46db-87a8-304f6e233d8e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/02a016a5-1f38-46db-87a8-304f6e233d8e.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/0c009f81-0d27-4796-92e8-eb49aa1aa7f8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/0c009f81-0d27-4796-92e8-eb49aa1aa7f8.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/17135de6-8a9f-42b6-820b-eee06a25d7b2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/17135de6-8a9f-42b6-820b-eee06a25d7b2.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/17bbbf3e-c635-4802-bfb7-846d9e21b150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/17bbbf3e-c635-4802-bfb7-846d9e21b150.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/1c6f3c17-9342-4909-bc3d-1d47f1b4a3eb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/1c6f3c17-9342-4909-bc3d-1d47f1b4a3eb.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/1cb9dce7-4ffb-4d6a-89fd-bcd2709e0599.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/1cb9dce7-4ffb-4d6a-89fd-bcd2709e0599.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/2148318: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/2148318 -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/2a562e01-9cda-4202-a901-4c1850cb33c9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/2a562e01-9cda-4202-a901-4c1850cb33c9.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/2f388304-927f-44b4-9d2e-8e9e3c2ebc90.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/2f388304-927f-44b4-9d2e-8e9e3c2ebc90.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/2fe859ef-0341-463e-ac01-9abb34a94ad9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/2fe859ef-0341-463e-ac01-9abb34a94ad9.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/33b689c1-f30e-4859-8f92-76a91914ebd9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/33b689c1-f30e-4859-8f92-76a91914ebd9.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/3af64059-37f6-4adf-abc1-3553a13f5683.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/3af64059-37f6-4adf-abc1-3553a13f5683.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/46845362-f6dd-45e8-b0a6-49e9cfd6f641.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/46845362-f6dd-45e8-b0a6-49e9cfd6f641.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/4a762811-84b5-4db8-b941-0198fe9c4bfe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/4a762811-84b5-4db8-b941-0198fe9c4bfe.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/4fabcac7-d0af-4c01-856b-4fa14cbbcd29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/4fabcac7-d0af-4c01-856b-4fa14cbbcd29.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/5029ea92-2994-4eb5-ad0d-0fada9f7bd3a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/5029ea92-2994-4eb5-ad0d-0fada9f7bd3a.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/53609747-504f0580-3b96-11e9-979d-0727bcc63f42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/53609747-504f0580-3b96-11e9-979d-0727bcc63f42.png -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/53630658-7dd49700-3c08-11e9-8329-d5d6f27264c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/53630658-7dd49700-3c08-11e9-8329-d5d6f27264c2.png -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/53631166-3521db80-3c12-11e9-8946-01c0c4da2d61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/53631166-3521db80-3c12-11e9-8946-01c0c4da2d61.png -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/53655225-71e6d600-3c04-11e9-89b9-69ce1261e53b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/53655225-71e6d600-3c04-11e9-89b9-69ce1261e53b.png -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/53698333-3a655e80-3da9-11e9-931e-39ae72bf1104.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/53698333-3a655e80-3da9-11e9-931e-39ae72bf1104.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/53746947-38b29e00-3e70-11e9-982a-a0ddb0a9134b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/53746947-38b29e00-3e70-11e9-982a-a0ddb0a9134b.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/54035164-bc58eb80-41de-11e9-9faf-e717eba0165a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/54035164-bc58eb80-41de-11e9-9faf-e717eba0165a.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/54139990-10d7b300-43f9-11e9-9db5-da607afd907f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/54139990-10d7b300-43f9-11e9-9db5-da607afd907f.png -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/54175230-5ebdeb00-44cd-11e9-8b5f-d9b760065e97.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/54175230-5ebdeb00-44cd-11e9-8b5f-d9b760065e97.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/54227549-637aa300-44bd-11e9-8b88-bdd2c9060684.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/54227549-637aa300-44bd-11e9-8b88-bdd2c9060684.png -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/54499348-16486800-48e7-11e9-8aa0-ef9cd15a002d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/54499348-16486800-48e7-11e9-8aa0-ef9cd15a002d.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/54570031-38e78900-499a-11e9-9d03-bf2db6f885d6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/54570031-38e78900-499a-11e9-9d03-bf2db6f885d6.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/58637674-8a9a-42bc-ad62-47447d176f0f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/58637674-8a9a-42bc-ad62-47447d176f0f.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/5d90914a-07bd-4f92-aab0-9df026779702.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/5d90914a-07bd-4f92-aab0-9df026779702.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/60e3d1c4-94a1-47c9-8e20-2b59052cdbdb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/60e3d1c4-94a1-47c9-8e20-2b59052cdbdb.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/683a145a-53a3-4d41-88f9-1d573316d5a8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/683a145a-53a3-4d41-88f9-1d573316d5a8.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/7560ad40-ccaa-4bd9-b5d8-967f9bcb31cd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/7560ad40-ccaa-4bd9-b5d8-967f9bcb31cd.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/760861b0-a922-4767-aac6-c26c4efffe4d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/760861b0-a922-4767-aac6-c26c4efffe4d.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/764aadea-1e93-48f6-97b8-e226388603ee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/764aadea-1e93-48f6-97b8-e226388603ee.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/77475b18-f681-4cd0-87d3-44b952733153.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/77475b18-f681-4cd0-87d3-44b952733153.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/7d09f48d-0281-4cb2-9a1a-b5c0e4a02e77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/7d09f48d-0281-4cb2-9a1a-b5c0e4a02e77.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/7fdddbc7-57d2-4ece-9f64-edaae7c0521b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/7fdddbc7-57d2-4ece-9f64-edaae7c0521b.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/91d8775a-b129-4321-97f1-4eff32632f5b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/91d8775a-b129-4321-97f1-4eff32632f5b.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/9b3f5b7e-4ad6-43aa-b453-253ba66503d8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/9b3f5b7e-4ad6-43aa-b453-253ba66503d8.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/RDC_Portrait_Small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/RDC_Portrait_Small.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/acb757aa-e39f-43c6-9edc-7873606a21ba.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/acb757aa-e39f-43c6-9edc-7873606a21ba.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/b6ee3715-63f8-4999-b548-0060867f3915.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/b6ee3715-63f8-4999-b548-0060867f3915.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/ba914438-998b-4069-800e-bee2d4222e98.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/ba914438-998b-4069-800e-bee2d4222e98.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/c3e06956-1e6e-4271-9ad2-b3e82303ab79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/c3e06956-1e6e-4271-9ad2-b3e82303ab79.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/cdebee6f-bbf9-4f0c-b5d6-0f7fd629cfb3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/cdebee6f-bbf9-4f0c-b5d6-0f7fd629cfb3.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/fc65339f-e397-483a-b668-85f481062b9b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/fc65339f-e397-483a-b668-85f481062b9b.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/fdc80204-3d45-44f6-af4d-7da9dc8de640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/fdc80204-3d45-44f6-af4d-7da9dc8de640.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/me.png -------------------------------------------------------------------------------- /input/assets/members/campaign-2019/shaun-walker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2019/shaun-walker.png -------------------------------------------------------------------------------- /input/assets/members/campaign-2020/dennie-declercq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2020/dennie-declercq.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2020/dhananjay-kumar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2020/dhananjay-kumar.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2020/huei-feng.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2020/huei-feng.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2020/jamie-howarth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2020/jamie-howarth.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2020/javier-lozano.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2020/javier-lozano.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2020/jay-harris.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2020/jay-harris.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2020/jeff-strauss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2020/jeff-strauss.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2020/jeffrey-chilberto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2020/jeffrey-chilberto.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2020/jerome-hardaway.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2020/jerome-hardaway.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2020/joseph-guadagno.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2020/joseph-guadagno.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2020/layla-porter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2020/layla-porter.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2020/mitchel-sellers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2020/mitchel-sellers.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2020/rainer-stropek.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2020/rainer-stropek.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2020/rodney-littles-ii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2020/rodney-littles-ii.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2020/rodrigo-diaz-concha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2020/rodrigo-diaz-concha.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2020/shawn-wildermuth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2020/shawn-wildermuth.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2021/davidwhitney.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2021/davidwhitney.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2021/frankodoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2021/frankodoom.png -------------------------------------------------------------------------------- /input/assets/members/campaign-2021/mattias-karlsson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2021/mattias-karlsson.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2021/placeholder.txt: -------------------------------------------------------------------------------- 1 | add your 2021 campaign images here -------------------------------------------------------------------------------- /input/assets/members/campaign-2021/rob-prouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2021/rob-prouse.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2022/iris_classon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2022/iris_classon.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2022/jeffrey-chilberto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2022/jeffrey-chilberto.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2022/jessica-white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2022/jessica-white.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2022/poornima-nayar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2022/poornima-nayar.jpg -------------------------------------------------------------------------------- /input/assets/members/campaign-2022/rainer-stropek.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/campaign-2022/rainer-stropek.jpg -------------------------------------------------------------------------------- /input/assets/members/chris-sfanos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/chris-sfanos.jpg -------------------------------------------------------------------------------- /input/assets/members/claire-novotny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/claire-novotny.jpg -------------------------------------------------------------------------------- /input/assets/members/daniel-roth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/daniel-roth.jpg -------------------------------------------------------------------------------- /input/assets/members/dave-brock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/dave-brock.jpg -------------------------------------------------------------------------------- /input/assets/members/dhananjay-kumar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/dhananjay-kumar.jpg -------------------------------------------------------------------------------- /input/assets/members/dominick-baier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/dominick-baier.jpg -------------------------------------------------------------------------------- /input/assets/members/eric-schneider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/eric-schneider.jpg -------------------------------------------------------------------------------- /input/assets/members/immo-landwerth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/immo-landwerth.jpg -------------------------------------------------------------------------------- /input/assets/members/irina-scurtu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/irina-scurtu.jpg -------------------------------------------------------------------------------- /input/assets/members/iris-classon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/iris-classon.jpg -------------------------------------------------------------------------------- /input/assets/members/isaac-levin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/isaac-levin.jpg -------------------------------------------------------------------------------- /input/assets/members/javier-lozano.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/javier-lozano.jpg -------------------------------------------------------------------------------- /input/assets/members/jeff-strauss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/jeff-strauss.jpg -------------------------------------------------------------------------------- /input/assets/members/jessica-white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/jessica-white.jpg -------------------------------------------------------------------------------- /input/assets/members/jon-galloway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/jon-galloway.png -------------------------------------------------------------------------------- /input/assets/members/jon-skeet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/jon-skeet.jpg -------------------------------------------------------------------------------- /input/assets/members/julie-lerman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/julie-lerman.jpg -------------------------------------------------------------------------------- /input/assets/members/layla-porter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/layla-porter.jpg -------------------------------------------------------------------------------- /input/assets/members/martin-woodward.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/martin-woodward.jpg -------------------------------------------------------------------------------- /input/assets/members/mattias-karlsson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/mattias-karlsson.jpg -------------------------------------------------------------------------------- /input/assets/members/miklos-barkoczi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/miklos-barkoczi.png -------------------------------------------------------------------------------- /input/assets/members/phil-haack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/phil-haack.jpg -------------------------------------------------------------------------------- /input/assets/members/rabeb-othmani.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/rabeb-othmani.jpg -------------------------------------------------------------------------------- /input/assets/members/rich-lander.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/rich-lander.jpg -------------------------------------------------------------------------------- /input/assets/members/rob-prouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/rob-prouse.jpg -------------------------------------------------------------------------------- /input/assets/members/rodney-littles-ii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/rodney-littles-ii.jpg -------------------------------------------------------------------------------- /input/assets/members/sami-basu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/sami-basu.jpg -------------------------------------------------------------------------------- /input/assets/members/sara-chipps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/sara-chipps.png -------------------------------------------------------------------------------- /input/assets/members/shaun-walker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/shaun-walker.jpg -------------------------------------------------------------------------------- /input/assets/members/shawn-wildermuth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/shawn-wildermuth.jpg -------------------------------------------------------------------------------- /input/assets/members/stacy-cashmore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/stacy-cashmore.jpg -------------------------------------------------------------------------------- /input/assets/members/steve-smith.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/steve-smith.jpg -------------------------------------------------------------------------------- /input/assets/members/veronika-kolesnikova.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/members/veronika-kolesnikova.jpg -------------------------------------------------------------------------------- /input/assets/posts/009ab65d-0d19-45ef-870c-85d8366a1c98.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/009ab65d-0d19-45ef-870c-85d8366a1c98.gif -------------------------------------------------------------------------------- /input/assets/posts/1c771e40-ae82-42f5-b260-c85f6736f3b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/1c771e40-ae82-42f5-b260-c85f6736f3b1.png -------------------------------------------------------------------------------- /input/assets/posts/1f162626bb47cb7b02ddf694434e140f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/1f162626bb47cb7b02ddf694434e140f.png -------------------------------------------------------------------------------- /input/assets/posts/217da7e1-5e3c-40aa-bb08-3e744ef93db8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/217da7e1-5e3c-40aa-bb08-3e744ef93db8.png -------------------------------------------------------------------------------- /input/assets/posts/28f8d88e6f4d71d1ad09a659cef56a2f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/28f8d88e6f4d71d1ad09a659cef56a2f.png -------------------------------------------------------------------------------- /input/assets/posts/31e83145-c125-4696-95ca-ec8f84d56ce2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/31e83145-c125-4696-95ca-ec8f84d56ce2.jpg -------------------------------------------------------------------------------- /input/assets/posts/32fd9305-5625-4b8e-94fa-c6916c320e71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/32fd9305-5625-4b8e-94fa-c6916c320e71.jpg -------------------------------------------------------------------------------- /input/assets/posts/4acc4ac7-42b9-4345-9020-f1fc0110470a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/4acc4ac7-42b9-4345-9020-f1fc0110470a.png -------------------------------------------------------------------------------- /input/assets/posts/54181549-cad12c80-4496-11e9-8c3d-426c5d1d008b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/54181549-cad12c80-4496-11e9-8c3d-426c5d1d008b.jpg -------------------------------------------------------------------------------- /input/assets/posts/74003b16-78f9-4abd-8d12-ccbc26077669.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/74003b16-78f9-4abd-8d12-ccbc26077669.png -------------------------------------------------------------------------------- /input/assets/posts/74241694-64015800-4c91-11ea-9431-736bc05717a0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/74241694-64015800-4c91-11ea-9431-736bc05717a0.png -------------------------------------------------------------------------------- /input/assets/posts/76425289-a12b3980-6366-11ea-977d-a1cf35af6cf8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/76425289-a12b3980-6366-11ea-977d-a1cf35af6cf8.png -------------------------------------------------------------------------------- /input/assets/posts/76426382-3975ee00-6368-11ea-97cf-fee658b2ce35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/76426382-3975ee00-6368-11ea-97cf-fee658b2ce35.png -------------------------------------------------------------------------------- /input/assets/posts/76426729-aab5a100-6368-11ea-936f-ab3ac79d957c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/76426729-aab5a100-6368-11ea-936f-ab3ac79d957c.png -------------------------------------------------------------------------------- /input/assets/posts/76426783-bc974400-6368-11ea-90bd-40e3f56daad1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/76426783-bc974400-6368-11ea-90bd-40e3f56daad1.png -------------------------------------------------------------------------------- /input/assets/posts/76427201-40513080-6369-11ea-9f30-b5146fec6338.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/76427201-40513080-6369-11ea-9f30-b5146fec6338.png -------------------------------------------------------------------------------- /input/assets/posts/790b50a0e40d778b1ae844813ee540b0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/790b50a0e40d778b1ae844813ee540b0.png -------------------------------------------------------------------------------- /input/assets/posts/8ab1b4f70484311bb03e3fe129232410.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/8ab1b4f70484311bb03e3fe129232410.png -------------------------------------------------------------------------------- /input/assets/posts/8c7df6eb-b295-4158-b293-9d3416db6e7d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/8c7df6eb-b295-4158-b293-9d3416db6e7d.png -------------------------------------------------------------------------------- /input/assets/posts/8fd1e465-9efa-4fc0-8c0f-60b7f5373ba3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/8fd1e465-9efa-4fc0-8c0f-60b7f5373ba3.jpg -------------------------------------------------------------------------------- /input/assets/posts/91a33811-0b6c-4f2f-83e8-3d4f720a84b9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/91a33811-0b6c-4f2f-83e8-3d4f720a84b9.png -------------------------------------------------------------------------------- /input/assets/posts/B7MGXhhb_400x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/B7MGXhhb_400x400.png -------------------------------------------------------------------------------- /input/assets/posts/BethM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/BethM.jpg -------------------------------------------------------------------------------- /input/assets/posts/MSFT_18023_dotNETConf_banners_email800x200_eventInfo_r3_KW.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/MSFT_18023_dotNETConf_banners_email800x200_eventInfo_r3_KW.jpg -------------------------------------------------------------------------------- /input/assets/posts/ODataLogo-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/ODataLogo-96.png -------------------------------------------------------------------------------- /input/assets/posts/RachelReese.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/RachelReese.JPG -------------------------------------------------------------------------------- /input/assets/posts/WWTinChina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/WWTinChina.jpg -------------------------------------------------------------------------------- /input/assets/posts/a6d67a46-573c-4d62-aef2-daa5610ddfd5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/a6d67a46-573c-4d62-aef2-daa5610ddfd5.jpg -------------------------------------------------------------------------------- /input/assets/posts/a865e1a3d11238c1fad86766c5725740.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/a865e1a3d11238c1fad86766c5725740.png -------------------------------------------------------------------------------- /input/assets/posts/akkadotnet-video.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/akkadotnet-video.jpg -------------------------------------------------------------------------------- /input/assets/posts/anglesharp-core-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/anglesharp-core-logo.png -------------------------------------------------------------------------------- /input/assets/posts/automapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/automapper.png -------------------------------------------------------------------------------- /input/assets/posts/bb977c44-1c97-4a5e-b325-8410ca30ff14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/bb977c44-1c97-4a5e-b325-8410ca30ff14.png -------------------------------------------------------------------------------- /input/assets/posts/bcd54232-6e7d-4e54-a254-ebf435315975.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/bcd54232-6e7d-4e54-a254-ebf435315975.jpg -------------------------------------------------------------------------------- /input/assets/posts/benchmarkdotnet_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/benchmarkdotnet_logo.png -------------------------------------------------------------------------------- /input/assets/posts/c0470106b9ba6699642d2c2fd2bd9b28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/c0470106b9ba6699642d2c2fd2bd9b28.png -------------------------------------------------------------------------------- /input/assets/posts/c7bae23e-d0ad-45e3-850f-d2bc2296c5e0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/c7bae23e-d0ad-45e3-850f-d2bc2296c5e0.jpg -------------------------------------------------------------------------------- /input/assets/posts/cake-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/cake-screenshot.png -------------------------------------------------------------------------------- /input/assets/posts/cc835bca2ea5a15970aaa0173c2ecebf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/cc835bca2ea5a15970aaa0173c2ecebf.png -------------------------------------------------------------------------------- /input/assets/posts/ceab7291-9a1b-4db8-83c9-46c6b2bdf744.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/ceab7291-9a1b-4db8-83c9-46c6b2bdf744.jpg -------------------------------------------------------------------------------- /input/assets/posts/connect-dnf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/connect-dnf.png -------------------------------------------------------------------------------- /input/assets/posts/corporate-sponsors-with-aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/corporate-sponsors-with-aws.png -------------------------------------------------------------------------------- /input/assets/posts/cqrs_documents.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/cqrs_documents.pdf -------------------------------------------------------------------------------- /input/assets/posts/cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/cropped.jpg -------------------------------------------------------------------------------- /input/assets/posts/d0116177-1422-43c8-a2a8-be355cea03f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/d0116177-1422-43c8-a2a8-be355cea03f2.png -------------------------------------------------------------------------------- /input/assets/posts/d115925b-2ca7-48bd-8259-9afd54bd4dfe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/d115925b-2ca7-48bd-8259-9afd54bd4dfe.png -------------------------------------------------------------------------------- /input/assets/posts/devexpress-logo-2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/devexpress-logo-2020.png -------------------------------------------------------------------------------- /input/assets/posts/dimagLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/dimagLogo.png -------------------------------------------------------------------------------- /input/assets/posts/dnf-meetups-dec18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/dnf-meetups-dec18.jpg -------------------------------------------------------------------------------- /input/assets/posts/dnf-new-projects-nov17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/dnf-new-projects-nov17.png -------------------------------------------------------------------------------- /input/assets/posts/dnf-voting-stats-mar-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/dnf-voting-stats-mar-26.png -------------------------------------------------------------------------------- /input/assets/posts/dotnet-bot-hacktoberfest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/dotnet-bot-hacktoberfest.png -------------------------------------------------------------------------------- /input/assets/posts/dotnetconf-2019-nigeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/dotnetconf-2019-nigeria.png -------------------------------------------------------------------------------- /input/assets/posts/dotnetconf-2019-romania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/dotnetconf-2019-romania.png -------------------------------------------------------------------------------- /input/assets/posts/dotnetconf-2019-thailand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/dotnetconf-2019-thailand.png -------------------------------------------------------------------------------- /input/assets/posts/dotnetconf-2019-tokyo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/dotnetconf-2019-tokyo.png -------------------------------------------------------------------------------- /input/assets/posts/dotnetsummer-keen-kanban-board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/dotnetsummer-keen-kanban-board.png -------------------------------------------------------------------------------- /input/assets/posts/dotvvm-hackfest-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/dotvvm-hackfest-1.gif -------------------------------------------------------------------------------- /input/assets/posts/dotvvm-hackfest-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/dotvvm-hackfest-2.gif -------------------------------------------------------------------------------- /input/assets/posts/dotvvm-hackfest-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/dotvvm-hackfest-3.jpg -------------------------------------------------------------------------------- /input/assets/posts/e0448b2e-2fcc-4539-beb8-55a16f07d9ba.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/e0448b2e-2fcc-4539-beb8-55a16f07d9ba.jpg -------------------------------------------------------------------------------- /input/assets/posts/e480cc53-ba2f-490f-9e1e-08da35e6fc57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/e480cc53-ba2f-490f-9e1e-08da35e6fc57.png -------------------------------------------------------------------------------- /input/assets/posts/e7edfe68-09d6-4713-a3e4-3a403d92fb48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/e7edfe68-09d6-4713-a3e4-3a403d92fb48.png -------------------------------------------------------------------------------- /input/assets/posts/ee48e462-f704-448c-986a-0c8ef4c37ca7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/ee48e462-f704-448c-986a-0c8ef4c37ca7.png -------------------------------------------------------------------------------- /input/assets/posts/f7365430b5b70746efa9cff3e55ba85e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/f7365430b5b70746efa9cff3e55ba85e.png -------------------------------------------------------------------------------- /input/assets/posts/f91cb28aeac6bb5f61fb6ea0dbbc1876.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/f91cb28aeac6bb5f61fb6ea0dbbc1876.png -------------------------------------------------------------------------------- /input/assets/posts/humanitarian-toolbox-hackfest-kickoff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/humanitarian-toolbox-hackfest-kickoff.jpg -------------------------------------------------------------------------------- /input/assets/posts/imagesharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/imagesharp.png -------------------------------------------------------------------------------- /input/assets/posts/infernet-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/infernet-icon.png -------------------------------------------------------------------------------- /input/assets/posts/jon-galloway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/jon-galloway.png -------------------------------------------------------------------------------- /input/assets/posts/json_net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/json_net.png -------------------------------------------------------------------------------- /input/assets/posts/maturity-ladder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/maturity-ladder.png -------------------------------------------------------------------------------- /input/assets/posts/maturity-model-graphics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/maturity-model-graphics.png -------------------------------------------------------------------------------- /input/assets/posts/maxresdefault.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/maxresdefault.jpg -------------------------------------------------------------------------------- /input/assets/posts/meetupmap_1-2018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/meetupmap_1-2018.png -------------------------------------------------------------------------------- /input/assets/posts/mvvmcross-hackfest-kickoff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/mvvmcross-hackfest-kickoff.jpg -------------------------------------------------------------------------------- /input/assets/posts/onnx-diagram-v03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/onnx-diagram-v03.png -------------------------------------------------------------------------------- /input/assets/posts/opencollective_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/opencollective_logo.png -------------------------------------------------------------------------------- /input/assets/posts/oren-novotny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/oren-novotny.jpg -------------------------------------------------------------------------------- /input/assets/posts/outreach-proposal-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/outreach-proposal-2.jpg -------------------------------------------------------------------------------- /input/assets/posts/outreach-proposal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/outreach-proposal.jpg -------------------------------------------------------------------------------- /input/assets/posts/peachpie-possibilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/peachpie-possibilities.png -------------------------------------------------------------------------------- /input/assets/posts/polly_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/polly_logo.png -------------------------------------------------------------------------------- /input/assets/posts/reactive-ui-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/reactive-ui-video.png -------------------------------------------------------------------------------- /input/assets/posts/reactiveui-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/reactiveui-logo.png -------------------------------------------------------------------------------- /input/assets/posts/samsung.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/samsung.jpg -------------------------------------------------------------------------------- /input/assets/posts/symbolsource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/symbolsource.png -------------------------------------------------------------------------------- /input/assets/posts/the-truth-about-open-source.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/the-truth-about-open-source.jpg -------------------------------------------------------------------------------- /input/assets/posts/tizen-preview-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/tizen-preview-2.png -------------------------------------------------------------------------------- /input/assets/posts/tsg-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/tsg-2016.png -------------------------------------------------------------------------------- /input/assets/posts/tsg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/tsg.png -------------------------------------------------------------------------------- /input/assets/posts/ui-for-uwp-shirts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/ui-for-uwp-shirts.jpg -------------------------------------------------------------------------------- /input/assets/posts/uwp-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/uwp-ui.png -------------------------------------------------------------------------------- /input/assets/posts/wwt_planetarium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/posts/wwt_planetarium.jpg -------------------------------------------------------------------------------- /input/assets/projects/BenchmarkDotNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/BenchmarkDotNet.png -------------------------------------------------------------------------------- /input/assets/projects/Couchbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/Couchbase.png -------------------------------------------------------------------------------- /input/assets/projects/FluentValidation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/FluentValidation.png -------------------------------------------------------------------------------- /input/assets/projects/Humanizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/Humanizer.png -------------------------------------------------------------------------------- /input/assets/projects/MvvmLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/MvvmLight.png -------------------------------------------------------------------------------- /input/assets/projects/OData-Connected-Service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/OData-Connected-Service.png -------------------------------------------------------------------------------- /input/assets/projects/Pivotal-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/Pivotal-Logo.png -------------------------------------------------------------------------------- /input/assets/projects/anglesharp-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/anglesharp-logo.png -------------------------------------------------------------------------------- /input/assets/projects/app-vNext.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/app-vNext.jpg -------------------------------------------------------------------------------- /input/assets/projects/aspnetboilerplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/aspnetboilerplate.png -------------------------------------------------------------------------------- /input/assets/projects/automapper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/automapper.jpg -------------------------------------------------------------------------------- /input/assets/projects/avalonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/avalonia.png -------------------------------------------------------------------------------- /input/assets/projects/bunit-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/bunit-logo.png -------------------------------------------------------------------------------- /input/assets/projects/cake-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/cake-large.png -------------------------------------------------------------------------------- /input/assets/projects/cecil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/cecil.jpg -------------------------------------------------------------------------------- /input/assets/projects/chem4word.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/chem4word.jpg -------------------------------------------------------------------------------- /input/assets/projects/coverlet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/coverlet.png -------------------------------------------------------------------------------- /input/assets/projects/data-grid-extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/data-grid-extensions.png -------------------------------------------------------------------------------- /input/assets/projects/dnn-platform.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/dnn-platform.jpg -------------------------------------------------------------------------------- /input/assets/projects/dotnet-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/dotnet-platform.png -------------------------------------------------------------------------------- /input/assets/projects/dotvvm_logo_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/dotvvm_logo_square.png -------------------------------------------------------------------------------- /input/assets/projects/elsa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/elsa.png -------------------------------------------------------------------------------- /input/assets/projects/esquio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/esquio.png -------------------------------------------------------------------------------- /input/assets/projects/finbuckle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/finbuckle.png -------------------------------------------------------------------------------- /input/assets/projects/frp-excel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/frp-excel.gif -------------------------------------------------------------------------------- /input/assets/projects/hibp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/hibp.jpg -------------------------------------------------------------------------------- /input/assets/projects/identitymanager.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/identitymanager.jpg -------------------------------------------------------------------------------- /input/assets/projects/identitymodel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/identitymodel.jpg -------------------------------------------------------------------------------- /input/assets/projects/identityserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/identityserver.png -------------------------------------------------------------------------------- /input/assets/projects/jsondotnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/jsondotnet.png -------------------------------------------------------------------------------- /input/assets/projects/logo-prism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/logo-prism.png -------------------------------------------------------------------------------- /input/assets/projects/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/logo.png -------------------------------------------------------------------------------- /input/assets/projects/logo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/logo_big.png -------------------------------------------------------------------------------- /input/assets/projects/mahapps.metro.logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/mahapps.metro.logo.png -------------------------------------------------------------------------------- /input/assets/projects/marten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/marten.png -------------------------------------------------------------------------------- /input/assets/projects/microsoft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/microsoft.jpg -------------------------------------------------------------------------------- /input/assets/projects/nanoframework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/nanoframework.png -------------------------------------------------------------------------------- /input/assets/projects/nuget-package-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/nuget-package-explorer.png -------------------------------------------------------------------------------- /input/assets/projects/nunit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/nunit.png -------------------------------------------------------------------------------- /input/assets/projects/omnisharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/omnisharp.png -------------------------------------------------------------------------------- /input/assets/projects/oqtane-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/oqtane-white.png -------------------------------------------------------------------------------- /input/assets/projects/oqtane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/oqtane.png -------------------------------------------------------------------------------- /input/assets/projects/orchardcore_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/orchardcore_logo.png -------------------------------------------------------------------------------- /input/assets/projects/outercurve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/outercurve.png -------------------------------------------------------------------------------- /input/assets/projects/peachpie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/peachpie.png -------------------------------------------------------------------------------- /input/assets/projects/petabridge_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/petabridge_logo.png -------------------------------------------------------------------------------- /input/assets/projects/piranha-cms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/piranha-cms.png -------------------------------------------------------------------------------- /input/assets/projects/progressteleriklogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/progressteleriklogo.png -------------------------------------------------------------------------------- /input/assets/projects/protobuild.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/protobuild.jpg -------------------------------------------------------------------------------- /input/assets/projects/pwned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/pwned.png -------------------------------------------------------------------------------- /input/assets/projects/pythonnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/pythonnet.png -------------------------------------------------------------------------------- /input/assets/projects/reactive-extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/reactive-extensions.png -------------------------------------------------------------------------------- /input/assets/projects/reactiveui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/reactiveui.jpg -------------------------------------------------------------------------------- /input/assets/projects/restsharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/restsharp.png -------------------------------------------------------------------------------- /input/assets/projects/resx-resource-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/resx-resource-manager.png -------------------------------------------------------------------------------- /input/assets/projects/salesforce-toolkits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/salesforce-toolkits.png -------------------------------------------------------------------------------- /input/assets/projects/search-autocomplete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/search-autocomplete.gif -------------------------------------------------------------------------------- /input/assets/projects/silk.net.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /input/assets/projects/sixlabors.256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/sixlabors.256.png -------------------------------------------------------------------------------- /input/assets/projects/spectre-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/spectre-console.png -------------------------------------------------------------------------------- /input/assets/projects/stride.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/stride.png -------------------------------------------------------------------------------- /input/assets/projects/system.drawing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/system.drawing.jpg -------------------------------------------------------------------------------- /input/assets/projects/telerik-ui-for-uwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/telerik-ui-for-uwp.png -------------------------------------------------------------------------------- /input/assets/projects/umbraco.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /input/assets/projects/unitycontainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/unitycontainer.png -------------------------------------------------------------------------------- /input/assets/projects/wix-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/wix-white.png -------------------------------------------------------------------------------- /input/assets/projects/xamarin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/xamarin.jpg -------------------------------------------------------------------------------- /input/assets/projects/xamarincommunitytoolkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/xamarincommunitytoolkit.png -------------------------------------------------------------------------------- /input/assets/projects/xunit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/assets/projects/xunit.jpg -------------------------------------------------------------------------------- /input/blog/posts/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = @"/blog/posts/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /input/blog/posts/_current-newsletter-draft.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: .NET Foundation Updates 3 | Author: Nicole Miller 4 | Published: 5 | Slug: net-foundation-update 6 | Excluded: true 7 | --- 8 | 9 | 10 | [Sign up for the newsletter](https://eepurl.com/dhL_qb) and get these updates delivered right to your inbox. 11 | 12 | ## General news 13 | 14 | 15 | 16 | 17 | ## .NET Foundation Project Updates 18 | ### New Projects 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | ### New Releases 27 | 28 | 29 | 30 | ## .NET Foundation Committee Updates 31 | 32 | 33 | 34 | 35 | 36 | ## Events 37 | 38 | 39 | 40 | 41 | ## Help Needed 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /input/blog/posts/_directory.yaml: -------------------------------------------------------------------------------- 1 | DestinationPath: | 2 | => new NormalizedPath("blog") 3 | / doc.Get(WebKeys.Published).ToString("yyyy/MM/dd") 4 | / (doc.ContainsKey("Slug") 5 | ? doc.Destination.ChangeFileName(doc.GetString("Slug")).ChangeExtension(".html") 6 | : Destination.FileName.ChangeExtension(".html")) -------------------------------------------------------------------------------- /input/blog/posts/events-dnfsummit-2022.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Join us for the DNF Summit 3 | Author: Nicole Miller 4 | Published: 2022-07-19 20:00:00.0000000 5 | --- 6 | ![Event Reminder](https://mcusercontent.com/9d9421a5cbd70d03dc69dc918/images/7273e3de-2f9c-6d5c-efb6-8bfb923b9e20.png) 7 | 8 | 9 | ## Tomorrow is our 1st DNF Summit on Wednesday July 20, 2022! 10 | 11 | 12 | Catch the free event live on: 13 | www.DNFSummit.org 14 | 15 | Join the conversation or ask questions on Twitter with the hashtag #DNFSummit 16 | 17 | 18 | If you can't watch live, it will be available on [YouTube!](https://www.youtube.com/c/NETFoundation) 19 | 20 | Optional registration link: https://bit.ly/3OjmWGA 21 | 22 | 23 | Our line up for the day can be found on www.DNFSummit.org 24 | -------------------------------------------------------------------------------- /input/blog/posts/the-net-foundation-adds-asp-net-vnext-to-its-stewardship.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: The .NET Foundation Adds ASP.NET vNext to its Stewardship 3 | Author: 4 | Published: 2014-05-12 17:08:00.0000000 5 | --- 6 |

The .NET Foundation is pleased to announce the addition of ASP.NET vNext to our stewardship. For more information on this early version of ASP.NET vNext that is optimized for mobile-first and cloud-first development, see The Next Generation of .NET – ASP.NET vNext on the NET Framework Blog.

7 | -------------------------------------------------------------------------------- /input/community/committeelist/education.yaml: -------------------------------------------------------------------------------- 1 | Title: Education 2 | Description: | 3 | The education committee is responsible for developing, sponsoring, and providing educational opportunities for the .NET community. 4 | Chairperson: Open 5 | Images: 6 | - https://via.placeholder.com/150.png?text=TBD 7 | Meets: TBD 8 | Repository: https://github.com/dotnet-foundation/wg-education 9 | Order: 6 10 | -------------------------------------------------------------------------------- /input/community/committeelist/maintainers.yaml: -------------------------------------------------------------------------------- 1 | Title: Maintainers Committee 2 | Description: Welcome to the project maintainers' working group and committee. This group is intended to allow project maintainers to voice their concerns and make suggestions to the .NET Foundation Board about the support they need in maintaining their projects. 3 | Chairperson: Mattias Karlsson and Rob Prouse 4 | Image: [/assets/members/mattias-karlsson.jpg, /assets/members/rob-prouse.jpg] 5 | Meets: Second Wednesday of every month at 16:00 ET / 21:00 UTC for up to one hour. 6 | Repository: https://github.com/dotnet-foundation/wg-maintainers 7 | Excluded: false 8 | Order: 5 9 | -------------------------------------------------------------------------------- /input/community/committeelist/marketing.yaml: -------------------------------------------------------------------------------- 1 | Title: Marketing 2 | Description: The marketing committee is here to help spread the message of openness in the .NET ecosystem. We support community and project initiatives, drive awareness and increase membership. We create consistent, powerful storytelling to increase share of conversation and establish industry relevance for the .NET Foundation. 3 | Chairperson: Isaac Levin 4 | Image: /assets/members/isaac-levin.jpg 5 | Meets: Occurs every first Thursday of the month from 9:30 AM to 10:30 AM PT 6 | Repository: https://github.com/dotnet-foundation/wg-marketing 7 | Order: 2 8 | -------------------------------------------------------------------------------- /input/community/committeelist/membership.yaml: -------------------------------------------------------------------------------- 1 | Title: Membership 2 | Description: | 3 | The Membership Committee is responsible for:: 4 |
    5 |
  • evaluating new member applications
  • 6 |
  • discussing membership criteria
  • 7 |
  • improving the membership value and offering
  • 8 |
  • discussing how to build a great community and make membership appealing to more groups
  • 9 |
  • managing the nomination and election process
  • 10 |
11 | Head to the repository for more information about how to join and get involved. 12 | Chairperson: Jessica White 13 | Image: /assets/members/jessica-white.jpg 14 | Meets: 1st and 3rd Wednesday of each month at 3PM ET / 7PM UTC 15 | Repository: https://github.com/dotnet-foundation/wg-membership 16 | Order: 3 17 | -------------------------------------------------------------------------------- /input/community/committeelist/outreach.yaml: -------------------------------------------------------------------------------- 1 | Title: Outreach 2 | Description: | 3 | The outreach committee is here to welcome developers of all backgrounds, education, and technology experience into the .NET ecosystem. 4 | We are here to help you organize and evangelize with your own .NET communities, opportunities, and events. 5 | Chairperson: Shawn Wildermuth 6 | Image: /assets/members/shawn-wildermuth.jpg 7 | Meets: This committee meets for one hour on the 2nd Tuesday of every month at 3:00 pm ET. 8 | Repository: https://github.com/dotnet-foundation/wg-outreach 9 | Order: 4 10 | 11 | -------------------------------------------------------------------------------- /input/community/committeelist/projects.yaml: -------------------------------------------------------------------------------- 1 | Title: Projects 2 | Description: | 3 | The Project Committee manages the day to day requirements of Projects. This includes but is not limited to the following: 4 |
    5 |
  • Review and evaluate new Project applications
  • 6 |
  • Monitor health of existing Projects
  • 7 |
  • Handle the retirement of Projects
  • 8 |
  • Provide support to Projects
  • 9 |
10 | Chairperson: Shaun Walker 11 | Image: /assets/members/shaun-walker.jpg 12 | Meets: Second Thursday of every month 13 | Repository: https://github.com/dotnet-foundation/projects 14 | Order: 1 15 | -------------------------------------------------------------------------------- /input/community/committeelist/sponsorship.yaml: -------------------------------------------------------------------------------- 1 | Title: Sponsorship 2 | Description: The committee is responsible for working with sponsors of the foundation and acquiring new sponsorship opportunities. 3 | Chairperson: TBD 4 | Image: https://via.placeholder.com/150.png?text=TBD 5 | Meets: TBD 6 | Repository: https://github.com/dotnet-foundation/wg-corporate-relations 7 | Excluded: false 8 | Order: 7 9 | -------------------------------------------------------------------------------- /input/community/committeelist/template.yaml: -------------------------------------------------------------------------------- 1 | Title: Title 2 | Description: The committee is responsible for …. 3 | Chairperson: John Doe 4 | Image: https://via.placeholder.com/150 5 | Meets: When.. 6 | Repository: https://github.com/dotnet-foundation/ 7 | Excluded: true 8 | Order: 1 9 | -------------------------------------------------------------------------------- /input/community/presentations/250-aspnet-core-samples.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: tutorial 3 | id: 250-aspnet-core-samples 4 | title: 250+ ASP.NET Core Samples 5 | repo: dodyg/practical-aspnetcore 6 | link: https://github.com/dodyg/practical-aspnetcore 7 | --- 8 | 9 | Dody has built an amazing collection of over 180 code samples for ASP.NET Core fundamentals. These are really focused samples that are quick to set up and run, and he keeps them really up to date. -------------------------------------------------------------------------------- /input/community/presentations/_directory.yaml: -------------------------------------------------------------------------------- 1 | RenderPostProcessTemplates: false 2 | ShouldOutput: false -------------------------------------------------------------------------------- /input/community/presentations/akkanet-bootcamp.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: tutorial 3 | id: akkanet-bootcamp 4 | title: Akka.NET Bootcamp 5 | repo: petabridge/akka-bootcamp 6 | link: https://github.com/petabridge/akka-bootcamp 7 | --- 8 | 9 | A step-by-step, self-paced tutorial for learning the basics of the actor model and Akka.NET syntax. You'll learn how to create your own actors, how to use them to build highly concurrent applications safely and easily, and you'll learn how to integrate actors with other popular .NET technologies such as the Task and Parallelism Library (TPL.) -------------------------------------------------------------------------------- /input/community/presentations/aspnet-core-a-z-e-book.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: tutorial 3 | id: aspnet-core-a-z-e-book 4 | title: ASP.NET Core A-Z e-book 5 | link: https://wakeupandcode.com/release-asp-net-core-a-z-ebook/ 6 | --- 7 | 8 | This is a great way to learn ASP.NET Core key concepts, with A-Z deep dives on important concepts and features from "Authentication & Authorization" to "Zero-Downtime Web Apps". -------------------------------------------------------------------------------- /input/community/presentations/aspnet-core-app-workshop.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: workshop 3 | id: aspnet-core-app-workshop 4 | title: ASP.NET Core App Workshop 5 | repo: dotnet-presentations/aspnetcore-app-workshop 6 | link: https://github.com/dotnet-presentations/aspnetcore-app-workshop 7 | --- 8 | 9 | In this workshop, you'll learn by building a full-featured ASP.NET Core application from scratch. We'll start from File/ New and build up to an API back-end application, a web front-end application, and a common library for shared data transfer objects using .NET Standard. -------------------------------------------------------------------------------- /input/community/presentations/aspnet-core-for-beginners.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: workshop 3 | id: aspnet-core-for-beginners 4 | title: ASP.NET Core For Beginners 5 | repo: dotnet-presentations/aspnetcore-for-beginners 6 | link: https://github.com/dotnet-presentations/aspnetcore-for-beginners 7 | --- 8 | 9 | Are you completely new to .NET? No problem! Here's a half day workshop for developers who have no experience with .NET Core or ASP.NET. We'll start with the basics and build up to a movie database website with search. -------------------------------------------------------------------------------- /input/community/presentations/aspnet-core-overview-workshop.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: workshop 3 | id: aspnet-core-overview-workshop 4 | title: ASP.NET Core Overview Workshop 5 | repo: dotnet-presentations/aspnetcore-workshop 6 | link: https://github.com/dotnet-presentations/aspnetcore-workshop 7 | --- 8 | 9 | This ASP.NET Core workshop is broken down by topics: middleware, front-end, etc. -------------------------------------------------------------------------------- /input/community/presentations/aspnetcore-architecture-ebook.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: tutorial 3 | id: aspnetcore-architecture-ebook 4 | title: ASP.NET Core architecture e-book 5 | link: https://docs.microsoft.com/dotnet/architecture/modern-web-apps-azure/ 6 | --- 7 | 8 | This guide provides end-to-end guidance on building monolithic web applications using ASP.NET Core and Azure. -------------------------------------------------------------------------------- /input/community/presentations/aws-cdk-workshop.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: workshop 3 | id: aws-cdk-workshop 4 | title: AWS CDK .NET WORKSHOP 5 | link: https://cdkworkshop.com/40-dotnet.html 6 | --- 7 | 8 | AWS CDK allows developers to define their cloud infrastructure in code instead of writing large JSON or YAML files. .NET developers can build their cloud infrastructure in C# or F# taking advantages of .NET compilers and tools to validate their infrastructure. -------------------------------------------------------------------------------- /input/community/presentations/blazor-ebook.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: tutorial 3 | id: blazor-ebook 4 | title: Blazor for ASP.NET Web Forms Developers 5 | link: https://docs.microsoft.com/dotnet/architecture/blazor-for-web-forms-developers/ 6 | --- 7 | 8 | This free e-book introduces ASP.NET Web Forms developers to Blazor. It introduces Blazor concepts in parallel with analogous concepts in ASP.NET Web Forms. -------------------------------------------------------------------------------- /input/community/presentations/blazor-workshop.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: workshop 3 | id: blazor-workshop 4 | title: Blazor Workshop 5 | repo: dotnet-presentations/blazor-workshop 6 | link: https://github.com/dotnet-presentations/blazor-workshop/ 7 | --- 8 | 9 | Blazor is a single-page app framework for building client-side web apps using .NET and WebAssembly. In this workshop we will build a complete Blazor app and learn about the various Blazor framework features along the way. -------------------------------------------------------------------------------- /input/community/presentations/cloud-native-ebook.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: tutorial 3 | id: cloud-native-ebook 4 | title: Architecting Cloud-Native .NET Apps for Azure e-book 5 | link: https://docs.microsoft.com/dotnet/architecture/cloud-native 6 | --- 7 | 8 | This free e-book defines cloud native, introduces a sample app built using cloud-native principles, and covers topics common to most cloud-native applications. -------------------------------------------------------------------------------- /input/community/presentations/csharp-workshop.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: workshop 3 | id: csharp-workshop 4 | title: C# Workshop 5 | repo: dotnet-presentations/csharp-workshop 6 | link: https://github.com/dotnet-presentations/csharp-workshop 7 | --- 8 | 9 | Are you ready to get started with C#? This 2 hour introductory C# workshop will take you through everything you need to know to use the latest and greatest features of C#. 10 | -------------------------------------------------------------------------------- /input/community/presentations/dapr-ebook.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: tutorial 3 | id: dapr-ebook 4 | title: Dapr for .NET Developers e-book 5 | link: https://docs.microsoft.com/dotnet/architecture/dapr-for-net-developers 6 | --- 7 | 8 | This guide helps .NET developers to understand and leverage the full power of Microsoft's open-source Distributed Application Runtime. -------------------------------------------------------------------------------- /input/community/presentations/devops-aspnetcore-ebook.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: tutorial 3 | id: devops-aspnetcore-ebook 4 | title: DevOps for ASP.NET Core Developers e-book 5 | link: https://docs.microsoft.com/dotnet/architecture/devops-for-aspnet-developers 6 | --- 7 | 8 | This guide covers the fundamental concepts of the application development lifecycle for the ASP.NET Core apps. It focuses on an end-to-end continuous integration and deployment experience with examples covering GitHub Actions and Azure DevOps. -------------------------------------------------------------------------------- /input/community/presentations/devops-for-containerized-apps-ebook.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: tutorial 3 | id: devops-for-containerized-apps-ebook 4 | title: DevOps for containerized apps e-book 5 | link: https://docs.microsoft.com/dotnet/architecture/containerized-lifecycle 6 | --- 7 | 8 | This guide introduces the basic concepts of building a development lifecycle around Azure using .NET tools and processes. After finishing this guide you'll have the knowledge needed to build a mature DevOps toolchain. -------------------------------------------------------------------------------- /input/community/presentations/dotnet-maui-workshop.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: workshop 3 | id: dotnet-maui-workshop 4 | title: .NET MAUI Workshop 5 | repo: dotnet-presentations/dotnet-maui-workshop 6 | link: https://github.com/dotnet-presentations/dotnet-maui-workshop 7 | --- 8 | 9 | In this workshop, you'll learn by building a full-featured iOS, Android, macOS, and Windows application from scratch built with .NET MAUI. We'll start from File/ New and build up a full application that lists data from a RESTful backend, add navigation, platform features including geolocation, dependency injection, app themeing, and more. 10 | -------------------------------------------------------------------------------- /input/community/presentations/dotnet-maui.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: deck 3 | id: dotnet-maui 4 | title: .NET MAUI Presenations 5 | link: https://github.com/dotnet-presentations/dotnet-maui 6 | --- 7 | 8 | Here you will find presentations for building native desktop and mobile applications for Android, iOS, macOS, and Windows with .NET MAUI. This includes an introduction deck to .NET MAUI and a presentatio on upgrading from Xamarin.Forms to .NET MAUI. -------------------------------------------------------------------------------- /input/community/presentations/grpc-ebook.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: tutorial 3 | id: grpc-ebook 4 | title: gRPC for WCF developers e-book 5 | link: https://docs.microsoft.com/dotnet/architecture/grpc-for-wcf-developers/ 6 | --- 7 | 8 | This free e-book explains gRPC, relating each concept to the equivalent features of WCF, and offers guidance for migrating an existing WCF app to gRPC. -------------------------------------------------------------------------------- /input/community/presentations/microservices-ebook.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: tutorial 3 | id: microservices-ebook 4 | title: .NET Microservices Architecture for Containerized .NET Applications e-book 5 | link: https://docs.microsoft.com/dotnet/architecture/microservices/ 6 | --- 7 | 8 | This guide is an introduction to developing microservices-based applications and managing them using containers. It discusses architectural design and implementation approaches using .NET Core and Docker containers. -------------------------------------------------------------------------------- /input/community/presentations/net-core-workshop.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: workshop 3 | id: net-core-workshop 4 | title: .NET Workshop 5 | repo: dotnet-presentations/dotnetcore-workshop 6 | link: https://github.com/dotnet-presentations/dotnetcore-workshop 7 | --- 8 | 9 | Are you ready to get started with .NET? This one day workshop covers the basics, then digs into web development with ASP.NET Core, .NET Standard, porting from .NET Framework, and containers. -------------------------------------------------------------------------------- /input/community/presentations/net-today-and-tomorrow.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: deck 3 | id: net-today-and-tomorrow 4 | title: .NET Today and Tomorrow 5 | link: https://github.com/dotnet-presentations/home/tree/master/.NET%20Keynote 6 | --- 7 | 8 | Overview of the .NET platform, open source ecosystem, features in the latest releases, and the future roadmap of .NET Core 3.0. Great for keynotes. -------------------------------------------------------------------------------- /input/community/presentations/porting-aspnet-to-aspnetcore-ebook.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: tutorial 3 | id: porting-aspnet-to-aspnetcore-ebook 4 | title: Porting existing ASP.NET Apps to ASP.NET Core e-book 5 | link: https://docs.microsoft.com/dotnet/architecture/porting-existing-aspnet-apps/ 6 | --- 7 | 8 | This free e-book provides high-level strategies for migrating existing apps written for ASP.NET MVC and Web API (.NET Framework 4.x) to ASP.NET Core. -------------------------------------------------------------------------------- /input/community/presentations/serverless-apps-ebook.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: tutorial 3 | id: serverless-apps-ebook 4 | title: Serverless apps e-book 5 | link: https://docs.microsoft.com/dotnet/architecture/serverless/ 6 | --- 7 | 8 | This guide focuses on cloud native development of applications that use serverless. The book highlights the benefits and exposes the potential drawbacks of developing serverless apps and provides a survey of serverless architectures. -------------------------------------------------------------------------------- /input/community/presentations/the-little-aspnet-core-book.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: tutorial 3 | id: the-little-aspnet-core-book 4 | title: The Little ASP.NET Core Book 5 | link: https://www.recaffeinate.co/book/ 6 | --- 7 | 8 | You don't need to know anything about web programing or ASP.NET Core to get started! The Little ASP.NET Core Book is structured as a tutorial. You'll build an app from start to finish and learn: 9 | 10 | - How to build an application with the ASP.NET Core framework 11 | - The basics of the MVC (Model-View-Controller) pattern 12 | - How to read and write data to a database 13 | - How to add login, registration, and security 14 | - How to deploy the app to the web 15 | -------------------------------------------------------------------------------- /input/community/presentations/what-is-net.md: -------------------------------------------------------------------------------- 1 | --- 2 | type: deck 3 | id: what-is-net 4 | title: What is .NET? 5 | link: https://github.com/dotnet-presentations/home/tree/master/.NET%20Intro 6 | --- 7 | 8 | Level 100 Beginner 45min presentation on what .NET is and how to get started! -------------------------------------------------------------------------------- /input/community/speakers/_Layout.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = @"/_Layout.cshtml"; 3 | } 4 | 5 | @section head { 6 | 7 | 8 | 9 | @RenderSection("head", required: false) 10 | } 11 | 12 |
13 |
14 |
15 |
16 |

Speaker Directory

17 |
18 |
19 |
20 |
21 | 22 | @RenderBody() -------------------------------------------------------------------------------- /input/community/speakers/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = @"_SpeakerLayout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /input/community/speakers/abdullah-hamed.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Abdullah Hamed 3 | Location: Seattle, Washington USA 4 | Email: abhamed@microsoft.com 5 | Language: 6 | - English 7 | - Arabic 8 | Topics: 9 | - Game Development 10 | Twitter: https://twitter.com/indiesaudi 11 | Mentor: true 12 | --- 13 | An Arabic game development advocate. I love helping game developers make their vision come true. I love teaching beginners how to make games using .NET and C#. I have over 10 years of experience in the game industry. 14 | -------------------------------------------------------------------------------- /input/community/speakers/alexej-sommer.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Alexej Sommer 3 | Location: Ratingen, Germany 4 | Email: alexejsommer@outlook.com 5 | Language: 6 | - Russian 7 | - English 8 | - German 9 | Topics: 10 | - .NET 11 | - ASP.NET 12 | - Architecture 13 | - C# 14 | - Containers 15 | - IoT 16 | - Security 17 | - Serverless 18 | - Web Development 19 | - Xamarin 20 | Blog: https://habr.com/ru/users/asommer/posts/ 21 | GitHub: https://github.com/programmersommer 22 | StackOverflow: https://stackoverflow.com/users/4699676/alexej-sommer 23 | LinkedIn: https://www.linkedin.com/in/alexejsommer 24 | Instagram: https://www.instagram.com/alexejsommer/ 25 | --- 26 | Professional .NET developer (UWP/WPF/Xamarin/ASP.NET Core) with MCP/MCSD certificates. MVP 2016-2019 (Windows Development) 27 | -------------------------------------------------------------------------------- /input/community/speakers/amiee-lo.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Amiee Lo 3 | Location: Seattle, Washington USA 4 | Email: amlo@microsoft.com 5 | Language: 6 | - English 7 | Topics: 8 | - .NET 9 | - Microservices 10 | - Product Management 11 | Twitter: https://twitter.com/amiee_lo 12 | GitHub: https://github.com/amarie401 13 | LinkedIn: https://www.linkedin.com/in/amiee-lo 14 | Mentor: true 15 | Mentee: true 16 | --- 17 | Amiee is a Program Manager at Microsoft on the .NET team. She is one of the lead PMs for an open-source project - Tye, with a focus on improving and simplifying the inner-loop developer experience when building, testing, and deploying microservices and distributed applications. 18 | -------------------------------------------------------------------------------- /input/community/speakers/andrea-tosato.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Andrea Tosato 3 | Pronouns: he/him 4 | Location: Verona, Italy 5 | Email: andrea.tosato@hotmail.it 6 | Language: 7 | - Italian 8 | - English 9 | Topics: 10 | - .NET 11 | - ASP.NET Web API 12 | - Architecture 13 | - Azure 14 | - Blazor 15 | - C# 16 | - Containers 17 | - Entity Framework 18 | - Microsoft Graph 19 | - Microservices 20 | - Serverless 21 | - SignalR 22 | Twitter: https://twitter.com/ATosato86 23 | GitHub: https://github.com/andreatosato 24 | LinkedIn: https://linkedin.com/in/andreatosato 25 | Sessionize: https://sessionize.com/andrea-tosato 26 | Mentor: true 27 | --- 28 | Microsoft MVP in Azure category, .NET developer since 2011. 29 | -------------------------------------------------------------------------------- /input/community/speakers/andrey-gubskiy.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Andrey Gubskiy 3 | Location: Kiev, Ukraine 4 | Email: andrew@gubskiy.com 5 | Language: 6 | - Russian 7 | Topics: 8 | - .NET 9 | - ASP.NET 10 | - Architecture 11 | - C# 12 | - DevOps 13 | - JetBrains Rider 14 | - Microservices 15 | - Web Development 16 | Blog: https://andrew.gubskiy.com/en/ 17 | Twitter: https://twitter.com/andrew_gubskiy 18 | GitHub: https://github.com/ernado-x 19 | LinkedIn: https://linkedin.com/in/gubskiy/ 20 | Dev: https://dev.to/andrewgubskiy 21 | --- 22 | Software Architect at video intelligence AG company and CTO at Torf TV project. 23 | Microsoft MVP in Developer Technologies Category. 24 | Developing high load systems on .NET platform. 25 | -------------------------------------------------------------------------------- /input/community/speakers/banditoth.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: András Tóth 3 | Location: Budapest, Hungary 4 | Email: hello@banditoth.net 5 | Language: 6 | - English 7 | - Hungarian 8 | Topics: 9 | - .NET 10 | - Android 11 | - Azure 12 | - C# 13 | - DevOps 14 | - iOS 15 | - macOS 16 | - Microsoft 365 17 | - Mobile Development 18 | - NuGet 19 | - Visual Studio 20 | - Visual Studio for Mac 21 | - Xamarin 22 | - Xamarin.Forms 23 | - XAML 24 | Blog: https://www.banditoth.net 25 | Feed: https://www.banditoth.net/feed/ 26 | GitHub: https://github.com/banditoth 27 | StackOverflow: https://stackoverflow.com/users/9396613/ 28 | LinkedIn: https://linkedin.com/in/banditoth/ 29 | Instagram: https://www.instagram.com/banditoth/ 30 | Mentee: true 31 | --- 32 | 33 | -------------------------------------------------------------------------------- /input/community/speakers/brady-gaster.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Brady Gaster 3 | Location: Sammamish, WA 4 | Email: bradyg@microsoft.com 5 | Language: 6 | - English 7 | Topics: 8 | - ASP.NET Web API 9 | Blog: https://bradygaster.com 10 | Feed: https://bradygaster.com/feed/rss 11 | Twitter: https://twitter.com/bradygaster 12 | GitHub: https://github.com/bradygaster/ 13 | --- 14 | Brady Gaster is a principal program manager in the Developer Division at Microsoft, where he works on SignalR, microservices and HTTP APIs, and integration with Azure service teams in hopes to make it exciting for developers who work on .NET apps to party in the cloud. You can find Brady on Twitter at @bradygaster when he's not learning with (or from) his 2 sons, tinkering with code, or making music in his basement using various synthesizers and guitars. 15 | -------------------------------------------------------------------------------- /input/community/speakers/branimir-giurov.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Branimir Giurov 3 | Location: Sofia, Bulgaria 4 | Email: branimir@gmail.com 5 | Language: 6 | - English 7 | - Bulgarian 8 | Topics: 9 | - .NET 10 | - ASP.NET 11 | - ASP.NET MVC 12 | - Architecture 13 | - C# 14 | - Containers 15 | - Entity Framework 16 | - Microservices 17 | - ML.NET 18 | - NuGet 19 | - Visual Studio 20 | - Windows Development 21 | - Windows Forms 22 | LinkedIn: https://linkedin.com/in/branimirg 23 | --- 24 | I've over 15 years of speaker experiance, 20+ in Dev/Architecture. 25 | Ex-MVP on C# for 11 years. Currently cracking .net core in containers with Orleans and Masstransit on top of RedHat OpenShift. 26 | Strong interests in hybrid cloud apps, messaging and integration. 27 | -------------------------------------------------------------------------------- /input/community/speakers/bruno-bacelar.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Bruno Bacelar 3 | Pronouns: he/him 4 | Location: Bahia, Brazil 5 | Email: bruno.bacelar@live.com 6 | Language: 7 | - Portuguese 8 | Topics: 9 | - .NET 10 | - ASP.NET 11 | - ASP.NET MVC 12 | - ASP.NET Web API 13 | - Blazor 14 | - C# 15 | - JetBrains Rider 16 | - Open Source 17 | GitHub: https://github.com/knuxbbs 18 | LinkedIn: https://www.linkedin.com/in/brunobacelar/ 19 | Mentor: true 20 | --- 21 | I started my career as a developer using .NET, and haven't stopped since. 22 | 23 | I am available to talk about ASP.NET, open-source tools and .NET on Linux. 24 | -------------------------------------------------------------------------------- /input/community/speakers/cameron-presley.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Cameron Presley 3 | Pronouns: he/him 4 | Location: Charlotte, North Carolina USA 5 | Email: Cameron@TheSoftwareMentor.com 6 | Language: 7 | - English 8 | Topics: 9 | - .NET 10 | - Architecture 11 | - C# 12 | - F# 13 | - Human Skills 14 | - JavaScript 15 | - Windows Forms 16 | Blog: https://blog.thesoftwarementor.com 17 | Twitter: https://twitter.com/pcameronpresley 18 | GitHub: https://github.com/cameronpresley 19 | LinkedIn: https://linkedin.com/in/pcameronpresley 20 | Sessionize: https://sessionize.com/cameronpresley 21 | Mentor: true 22 | --- 23 | I have over five years experience speaking at conferences and user groups. You can see some of the feedback I've received for my presentations at https://blog.thesoftwarementor.com/feedback/ 24 | -------------------------------------------------------------------------------- /input/community/speakers/caterina-rindi-speaker.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Caterina Rindi 3 | Location: California, USA 4 | Language: 5 | - English 6 | - Italian 7 | - Spanish 8 | Topics: 9 | - Open Source 10 | Twitter: https://twitter.com/CaterinaRindi 11 | GitHub: https://github.com/c-rindi 12 | LinkedIn: https://linkedin.com/in/crindi 13 | YouTube: https://www.youtube.com/channel/UChM94Pc0iwB-0rdiAjnQe_A 14 | Mentor: true 15 | --- 16 | Many years of speaker experience, with a background in education. 17 | 18 | Topics include Open-Source, Blockchain & Cryptocurrencies, Sharing Economy, Peer-to-Peer Economies, and more. 19 | -------------------------------------------------------------------------------- /input/community/speakers/damir-dobric: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Damir Dobric 3 | Location: Frankfurt am Main, Germany 4 | Language: 5 | - English 6 | Topics: 7 | - .NET 8 | - Azure 9 | - C# 10 | - Containers 11 | - IoT 12 | - Microservices 13 | - ML.NET 14 | - Serverless 15 | Blog: https://developers.de/author/ddobric 16 | Feed: https://developers.de/author/ddobric/rss/ 17 | Twitter: https://twitter.com/ddobric 18 | GitHub: https://github.com/ddobric 19 | LinkedIn: https://www.linkedin.com/in/damir-dobric-a2756286/ 20 | MeetUp: https://www.meetup.com/Azure-Meetup-Frankfurt/ 21 | YouTube: https://www.youtube.com/channel/UCT961BsUQclbgkro4_w1bNg 22 | --- 23 | https://https://damirdobric.me/ 24 | -------------------------------------------------------------------------------- /input/community/speakers/davide-zordan.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Davide Zordan 3 | Location: London, United Kingdom 4 | Email: mail@davide.dev 5 | Language: 6 | - English 7 | - Italian 8 | Topics: 9 | - HoloLens 10 | - Mixed Reality 11 | Blog: https://davide.dev 12 | Twitter: https://twitter.com/davidezordan 13 | GitHub: https://github.com/davidezordan 14 | LinkedIn: https://www.linkedin.com/in/davidezordan 15 | Sessionize: https://sessionize.com/davide-zordan 16 | Mentor: true 17 | Mentee: true 18 | --- 19 | Davide is a software engineer living in London specialising in client/mobile development and Mixed Reality. He likes sharing his experiences with the community writing on his blog https://davide.dev and participating in Open-Source projects. 20 | -------------------------------------------------------------------------------- /input/community/speakers/dmitry-lyalin.md: -------------------------------------------------------------------------------- 1 | Title: Dmitry Lyalin 2 | Location: New Yorker WFH near Redmond, WA 3 | Email: dmitry.lyalin@lyalin.com 4 | Language: 5 | - English 6 | Topics: 7 | - .NET 8 | - C# 9 | - Mobile Development 10 | - Product Management 11 | - UWP 12 | - Visual Studio 13 | - Windows Development 14 | - WPF 15 | - Xamarin 16 | - Xamarin.Forms 17 | Twitter: https://twitter.com/lyalindotcom 18 | GitHub: https://github.com/lyalindotcom 19 | --- 20 | Senior Program Manager for Visual Studio focused on XAML tooling and Hot Reload. 21 | -------------------------------------------------------------------------------- /input/community/speakers/elahn-danee-harris.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Elahn Danee Harris 3 | Location: California, USA 4 | Email: elahndaneecodes@gmail.com 5 | Language: 6 | - English 7 | Topics: 8 | - .NET 9 | - ASP.NET 10 | - ASP.NET MVC 11 | - ASP.NET Web API 12 | - Blazor 13 | - C# 14 | - Razor 15 | - SignalR 16 | - Visual Studio 17 | - Visual Studio Code 18 | - Web Development 19 | Twitter: https://twitter.com/CodeThLightning 20 | GitHub: https://github.com/DaneeTheDeveloper 21 | Sessionize: https://sessionize.com/elahn-harris/ 22 | YouTube: https://www.youtube.com/channel/UCZpg20byiIpKa1cJc1hEpTg 23 | Mentee: true 24 | --- 25 | I love creating. I love building online communities. I love presenting. I love learning and figuring out how things work. I love learning about other people's journey and story. 26 | -------------------------------------------------------------------------------- /input/community/speakers/erik-schierboom.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Erik Schierboom 3 | Location: Gelderland, The Netherlands 4 | Email: erik_schierboom@hotmail.com 5 | Language: 6 | - English 7 | - Dutch 8 | Topics: 9 | - .NET 10 | - C# 11 | - F# 12 | Blog: https://www.erikschierboom.com/ 13 | Feed: https://www.erikschierboom.com/posts/index.xml 14 | Twitter: https://twitter.com/ErikSchierboom 15 | GitHub: https://github.com/erikschierboom 16 | StackOverflow: https://stackoverflow.com/users/2071395/erik-schierboom 17 | LinkedIn: https://www.linkedin.com/in/erikschierboom/ 18 | --- 19 | Having a passion for sharing knowledge, I've spoken at conferences, meetups and various companies. I've presented on a variety of topics, such as C#, F#, functional programming, Roslyn and Exercism. I'm always keen on learning new things and share that knowledge. 20 | -------------------------------------------------------------------------------- /input/community/speakers/george-stocker.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: George Stocker 3 | Pronouns: he/him 4 | Location: Washington, DC 5 | Email: george@georgestocker.com 6 | Language: 7 | - English 8 | Topics: 9 | - .NET 10 | - ASP.NET 11 | - ASP.NET MVC 12 | - Architecture 13 | - C# 14 | - Containers 15 | - Microservices 16 | - ReSharper 17 | Blog: https://georgestocker.com 18 | Feed: https://georgestocker.com/feed/ 19 | Twitter: https://twitter.com/gortok 20 | GitHub: https://github.com/gortok 21 | StackOverflow: https://stackoverflow.com/users/16587/george-stocker 22 | LinkedIn: https://www.linkedin.com/in/georgestocker 23 | Sessionize: https://sessionize.com/george-stocker 24 | Mentor: true 25 | --- 26 | 27 | -------------------------------------------------------------------------------- /input/community/speakers/giancarlo-lelli.md: -------------------------------------------------------------------------------- 1 | Title: Giancarlo Lelli 2 | Location: Italy 3 | Email: gcarlo.lelli@live.com 4 | Language: 5 | - English 6 | - Italian 7 | Topics: 8 | - .NET 9 | - ASP.NET 10 | - Architecture 11 | - Azure 12 | - Containers 13 | - DevOps 14 | - Microservices 15 | - Serverless 16 | - Visual Studio 17 | Twitter: https://twitter.com/itsonlyGianca 18 | GitHub: https://github.com/GiancarloLelli 19 | LinkedIn: https://it.linkedin.com/in/giancarlolelli 20 | Sessionize: https://sessionize.com/giancarlo-lelli/ 21 | Mentor: true 22 | --- 23 | Eager to teach, eager to learn and passionate about technology, innovation and community driven projects 24 | -------------------------------------------------------------------------------- /input/community/speakers/ginny-caughey-registration.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Ginny Caughey 3 | Location: Wilmington NC USA 4 | Email: ginny.caughey@wasteworks.com 5 | Language: 6 | - English 7 | Topics: 8 | - .NET 9 | - C# 10 | - UWP 11 | - Windows Development 12 | - Windows Forms 13 | - WPF 14 | Twitter: https://twitter.com/gcaughey 15 | GitHub: https://github.com/gcaughey 16 | Mentor: true 17 | --- 18 | For several decades I've been a speaker at big tech conferences such as Build, and TechEd, tiny meetings like my local .NET user group, and many in-between sized conferences in the US, Europe, UK, and Australia. I've even participated in several on-line events as a speaker, so I'm very familiar with stage fright and imposter syndrome in all its forms. ;-) But I still enjoy sharing what I've learned with others. 19 | -------------------------------------------------------------------------------- /input/community/speakers/harishchandra-ukirade.md: -------------------------------------------------------------------------------- 1 | Title: Harishchandra Ukirade 2 | Location: Stockholm Sweden 3 | Email: harish.ukirade@hotmail.com 4 | Language: 5 | - English 6 | Topics: 7 | - .NET 8 | - ASP.NET 9 | - ASP.NET MVC 10 | - ASP.NET Web API 11 | - Architecture 12 | - Azure 13 | - C# 14 | - DevOps 15 | - Microservices 16 | - Visual Studio 17 | --- 18 | 19 | -------------------------------------------------------------------------------- /input/community/speakers/jamie-howarth.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Jamie Howarth 3 | Location: Bath, UK 4 | Email: hello@jamiehowarth.me 5 | Language: 6 | - English 7 | Topics: 8 | - .NET 9 | - ASP.NET 10 | - ASP.NET MVC 11 | - ASP.NET Web API 12 | - Azure 13 | - Blazor 14 | - C# 15 | - Diversity & Inclusion 16 | - NuGet 17 | - Open Source 18 | Blog: https://jamiehowarth.me 19 | Twitter: https://twitter.com/jamiehowarth0 20 | GitHub: https://github.com/jamiehowarth0 21 | StackOverflow: https://stackoverflow.com/users/418297/jamie-howarth 22 | LinkedIn: https://www.linkedin.com/in/jamiehowarth0/ 23 | MeetUp: https://www.meetup.com/members/11432187/ 24 | YouTube: https://www.youtube.com/channel/UCX6yoi4POq0KAHFXKC2Jjdg 25 | Instagram: https://instagram.com/jamiehowarth0 26 | Mentor: true 27 | --- 28 | 29 | -------------------------------------------------------------------------------- /input/community/speakers/jon-sequeira.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Jon Sequeira 3 | Location: Seattle, Washington USA 4 | Email: josequ@microsoft.com 5 | Language: 6 | - English 7 | Topics: 8 | - .NET 9 | - Architecture 10 | - C# 11 | - DevOps 12 | - Human Skills 13 | - Microservices 14 | - Web Development 15 | Twitter: https://twitter.com/jonsequitur 16 | GitHub: https://github.com/jonsequitur 17 | --- 18 | 19 | 20 | -------------------------------------------------------------------------------- /input/community/speakers/jonathan-wood.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Jonathan Wood 3 | Pronouns: he/him 4 | Location: Raleigh, North Carolina USA 5 | Email: jwood@hey.com 6 | Language: 7 | - English 8 | Topics: 9 | - Artificial Intelligence 10 | - Machine Learning 11 | - ML.NET 12 | Blog: https://jonwood.co/ 13 | Twitter: https://twitter.com/JWood 14 | GitHub: https://github.com/jwood803 15 | StackOverflow: https://stackoverflow.com/users/186013/jon 16 | LinkedIn: https://www.linkedin.com/in/jonathangwood 17 | YouTube: https://www.youtube.com/c/JonWood 18 | --- 19 | An early adopter of ML.NET and other Microsoft AI technologies, Jonathan loves to teach what he's learned through is blog and YouTube channel. 20 | -------------------------------------------------------------------------------- /input/community/speakers/juanca-linares.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Juanca Linares 3 | Location: Barcelona, Spain 4 | Email: publiwebmaxter@gmail.com 5 | Language: 6 | - English 7 | - Spanish 8 | Topics: 9 | - .NET 10 | - Android 11 | - iOS 12 | - Mobile Development 13 | - Windows Development 14 | - Xamarin 15 | - Xamarin.Forms 16 | --- 17 | Hi! I'm Juanca, and I write code for tech project around the world. I'm currently a software engineer at Microsoft working on Xamarin.Forms, and have worked with the likes of WPF, UWP, Xamarin, Azure, and others over the years. 18 | 19 | When I'm not actively writing code, you'll probably find me making content for my blog . 20 | 21 | In the end, I'm just a guy who loves what he does, and who enjoys sharing and helping others grow, share good times, and learn together. 22 | -------------------------------------------------------------------------------- /input/community/speakers/julianocustodio.md: -------------------------------------------------------------------------------- 1 | Title: Juliano Custódio 2 | Location: São Paulo, Brazil 3 | Email: juliano.custodio@hotmail.com.br 4 | Language: 5 | - Portuguese 6 | Topics: 7 | - .NET 8 | - Azure 9 | - C# 10 | - DevOps 11 | - Mobile Development 12 | - Visual Studio 13 | - Xamarin 14 | - Xamarin.Forms 15 | Blog: https://julianocustodio.com 16 | Feed: https://julianocustodio.com/feed/ 17 | Twitter: https://twitter.com/juucustodio 18 | GitHub: https://github.com/juucustodio 19 | Instagram: https://instagram.com/juucustodio 20 | Mentor: true 21 | --- 22 | Microsoft MVP 23 | -------------------------------------------------------------------------------- /input/community/speakers/kendra-havens.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Kendra Havens 3 | Location: Seattle, Washington USA and part-time Los Angeles, California USA 4 | Email: kehavens@microsoft.com 5 | Language: 6 | - English 7 | Topics: 8 | - .NET 9 | - C# 10 | - Visual Studio 11 | Twitter: https://twitter.com/gotheap 12 | GitHub: https://github.com/kendrahavens 13 | LinkedIn: https://www.linkedin.com/in/kendrahavens 14 | --- 15 | 16 | -------------------------------------------------------------------------------- /input/community/speakers/kevin-gosse.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Kevin gosse 3 | Location: Paris, France 4 | Email: kevin.gosse@outlook.com 5 | Language: 6 | - English 7 | - French 8 | Topics: 9 | - .NET 10 | - C# 11 | Blog: https://medium.com/@kevingosse 12 | Feed: https://medium.com/feed/@kevingosse 13 | Twitter: https://twitter.com/kookiz/ 14 | GitHub: https://github.com/kevingosse 15 | StackOverflow: https://stackoverflow.com/users/869621/kevin-gosse 16 | LinkedIn: https://www.linkedin.com/in/kevingosse/ 17 | Mentor: true 18 | --- 19 | 20 | -------------------------------------------------------------------------------- /input/community/speakers/kevin-smith.md: -------------------------------------------------------------------------------- 1 | Title: Kevin Smith 2 | Location: York, England 3 | Email: kev_bite@msn.com 4 | Language: 5 | - English 6 | Topics: 7 | - .NET 8 | - ASP.NET 9 | - ASP.NET MVC 10 | - ASP.NET Web API 11 | - Azure 12 | - C# 13 | - Containers 14 | - Serverless 15 | Blog: https://kevsoft.net/ 16 | Feed: https://kevsoft.net/feed.xml 17 | Twitter: https://twitter.com/kev_bite 18 | GitHub: https://github.com/kevbite 19 | StackOverflow: https://stackoverflow.com/users/4079967/kevin-smith 20 | LinkedIn: https://www.linkedin.com/in/kevbite/ 21 | Sessionize: https://sessionize.com/kevin-smith 22 | MeetUp: https://www.meetup.com/members/102380092/ 23 | Mentor: true 24 | --- 25 | 26 | -------------------------------------------------------------------------------- /input/community/speakers/leonardo-micheloni.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Leonardo Gabriel Micheloni 3 | Location: Madrid, Spain 4 | Email: leomicheloni@hotmail.com 5 | Language: 6 | - English 7 | - Spanish 8 | Topics: 9 | - .NET 10 | - ASP.NET 11 | - ASP.NET MVC 12 | - ASP.NET Web API 13 | - Azure 14 | - Blazor 15 | - C# 16 | - Containers 17 | - DevOps 18 | - Entity Framework 19 | - JavaScript 20 | - Microservices 21 | - NuGet 22 | - Serverless 23 | - SignalR 24 | - Web Development 25 | - Xamarin 26 | - Xamarin.Forms 27 | Blog: https://www.leomicheloni.com 28 | Twitter: https://twitter.com/leomicheloni 29 | GitHub: https://github.com/leomicheloni 30 | LinkedIn: https://www.linkedin.com/in/leomicheloni/ 31 | YouTube: https://youtube.com/c/LeonardoMicheloni 32 | --- 33 | 34 | -------------------------------------------------------------------------------- /input/community/speakers/martin-finkel.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Martin Finkel 3 | Location: Paris, France 4 | Email: me@martinfinkel.com 5 | Language: 6 | - French 7 | - English 8 | Topics: 9 | - .NET 10 | - Android 11 | - Architecture 12 | - C# 13 | - DevOps 14 | - Diversity & Inclusion 15 | - iOS 16 | - macOS 17 | - Mobile Development 18 | - NuGet 19 | - Open Source 20 | - Product Management 21 | - UWP 22 | - Visual Studio 23 | - Visual Studio Code 24 | - Visual Studio for Mac 25 | - Windows Forms 26 | - WPF 27 | - Xamarin 28 | - Xamarin.Forms 29 | Blog: https://mfkl.github.io/ 30 | Twitter: https://twitter.com/martz2804 31 | GitHub: https://github.com/mfkl 32 | LinkedIn: https://www.linkedin.com/in/martin-finkel-a9368571 33 | Mentor: true 34 | --- 35 | -------------------------------------------------------------------------------- /input/community/speakers/miguel-ramos.md: -------------------------------------------------------------------------------- 1 | Title: Miguel Ramos 2 | Location: Seattle, Washington USA 3 | Email: miguelrb@microsoft.com 4 | Language: 5 | - English 6 | - Spanish 7 | Topics: 8 | - .NET 9 | - Open Source 10 | - Product Management 11 | - UWP 12 | - Windows Development 13 | - WPF 14 | Twitter: https://twitter.com/marbtweeting 15 | GitHub: https://github.com/marb2000 16 | LinkedIn: https://www.linkedin.com/in/miguelrb/ 17 | Mentor: true 18 | --- 19 | Senior Program Manager (PM) working on the WinUI product at Microsoft. These days he is leading all the WinUI strategy and execution to make the platform works with the Win32 app model. 20 | -------------------------------------------------------------------------------- /input/community/speakers/nish-anil.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Nish Anil 3 | Location: Bengaluru, India 4 | Email: nish@microsoft.com 5 | Language: 6 | - English 7 | Topics: 8 | - .NET 9 | - ASP.NET 10 | - Architecture 11 | - Azure 12 | - C# 13 | - Containers 14 | - Microservices 15 | Twitter: https://twitter.com/nishanil 16 | GitHub: https://github.com/nishanil 17 | LinkedIn: https://linkedin.com/in/nanil 18 | Instagram: https://instagram.com/nishanil 19 | Mentor: true 20 | --- 21 | I'm a PM on the .NET team at Microsoft working remotely from Bengaluru, India. I help create Architecture Guides for .NET developers and can deliver talks on Microservices, Containers, Kubernetes, and other Cloud-Native tech. If you don't see something that excites you here: dot.net/architecture, you should let me know. 22 | -------------------------------------------------------------------------------- /input/community/speakers/oleksandr-krakovetskyi.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Oleksandr Krakovetskyi 3 | Location: Kyiv, Ukraine 4 | Email: alex.krakovetskiy@gmail.com 5 | Language: 6 | - English 7 | - Ukrainian 8 | - Russian 9 | Topics: 10 | - Artificial Intelligence 11 | - Azure 12 | - Data 13 | - Machine Learning 14 | - Microsoft Teams 15 | - ML.NET 16 | Twitter: https://twitter.com/sashaeve 17 | GitHub: https://github.com/sashaeve 18 | StackOverflow: https://stackoverflow.com/users/111040/sashaeve 19 | LinkedIn: https://www.linkedin.com/in/sashaeve/ 20 | --- 21 | CEO at DevRain, CTO at DonorUA, Ph.D. in Computer Science. 22 | 23 | Microsoft Regional Director, Microsoft I Most Valuable Professional, Microsoft Certified Trainer. 24 | 25 | Artificial Intelligence / Machine Learning expert. 26 | -------------------------------------------------------------------------------- /input/community/speakers/paulo-morgado.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Paulo Morgado 3 | Location: Cacém, Lisbon, Portugal 4 | Email: paulo@paulomorgado.net 5 | Language: 6 | - English 7 | Topics: 8 | - .NET 9 | - ASP.NET 10 | - ASP.NET MVC 11 | - ASP.NET Web API 12 | - Blazor 13 | - C# 14 | - Entity Framework 15 | - NuGet 16 | - Razor 17 | - Visual Studio 18 | - Windows Development 19 | - Windows Forms 20 | - WPF 21 | Twitter: https://twitter.com/paulomorgado 22 | GitHub: https://github.com/paulomorgado 23 | StackOverflow: https://stackoverflow.com/users/402366/paulo-morgado 24 | LinkedIn: https://www.linkedin.com/in/paulomorgado 25 | MeetUp: https://www.meetup.com/members/192105767/ 26 | YouTube: https://www.youtube.com/c/PauloMorgadoPlus 27 | Dev: https://dev.to/paulomorgado 28 | --- 29 | 30 | -------------------------------------------------------------------------------- /input/community/speakers/poornima-nayar: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Poornima Jayamohan Nayar 3 | Location: Slough, Berkshire, UK 4 | Email: poornimakrishnav@gmail.com 5 | Language: 6 | - English 7 | Topics: 8 | - .NET 9 | - ASP.NET 10 | - ASP.NET MVC 11 | - ASP.NET Web API 12 | - Blazor 13 | - C# 14 | - Entity Framework 15 | - IoT 16 | - Razor 17 | - Web Development 18 | Blog: https://poornimanayar.co.uk 19 | Twitter: https://twitter.com/PoornimaNayar 20 | GitHub: https://github.com/poornimanayar 21 | LinkedIn: https://www.linkedin.com/in/poornimanayar/ 22 | Sessionize: https://sessionize.com/poornima-nayar/ 23 | --- 24 | I am Poornima Nayar. I love learning and sharing what I have learnt. I am a Microsoft MVP and a two-time Umbraco MVP. 25 | -------------------------------------------------------------------------------- /input/community/speakers/rafael-ferreira-dos-santos.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Rafael Ferreira dos Santos 3 | Location: Vitória, ES BRA 4 | Email: rsantos@braziliandevs.com 5 | Language: 6 | - English 7 | - Portuguese 8 | Topics: 9 | - .NET 10 | - ASP.NET 11 | - ASP.NET MVC 12 | - ASP.NET Web API 13 | - Architecture 14 | - Azure 15 | - C# 16 | - Containers 17 | - DevOps 18 | - Entity Framework 19 | - Microservices 20 | - Serverless 21 | - SignalR 22 | - Visual Studio 23 | - Web Development 24 | Blog: https://rafaeldossantos.net/ 25 | Twitter: https://twitter.com/rsantosdev 26 | GitHub: https://github.com/rsantosdev 27 | LinkedIn: https://www.linkedin.com/in/rsantosdev/ 28 | Instagram: https://www.instagram.com/rsantosdev/ 29 | Mentor: true 30 | --- 31 | Azure and .net addicted developer. 32 | -------------------------------------------------------------------------------- /input/community/speakers/robert-boedigheimer.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Robert Boedigheimer 3 | Location: Minnesota, USA 4 | Language: 5 | - English 6 | Topics: 7 | - ASP.NET 8 | - C# 9 | - Web Development 10 | Blog: https://weblogs.asp.net/boedie 11 | Feed: https://weblogs.asp.net/boedie/rss 12 | Twitter: https://twitter.com/boedie 13 | Sessionize: https://sessionize.com/robert-boedigheimer 14 | MeetUp: https://www.meetup.com/members/108079832/ 15 | --- 16 | Robert Boedigheimer works for Schwan's Home Delivery providing business solutions with web technologies. He is a Microsoft MVP, a Progress Ninja (Fiddler), an ASPInsider, a Pluralsight author, and a 3rd degree black belt in Tae Kwon Do. Robert regularly speaks at national and international events. 17 | 18 | -------------------------------------------------------------------------------- /input/community/speakers/sam-rueby.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Sam Rueby 3 | Location: Rochester, NY 4 | Email: samrueby@gmail.com 5 | Language: 6 | - English 7 | Topics: 8 | - .NET 9 | - ASP.NET 10 | - ASP.NET MVC 11 | - ASP.NET Web API 12 | - Azure 13 | - C# 14 | - Web Development 15 | Blog: https://samrueby.com 16 | Twitter: https://twitter.com/SamRueby 17 | GitHub: https://github.com/samrueby 18 | StackOverflow: https://stackoverflow.com/users/825011/sam-rueby 19 | LinkedIn: https://www.linkedin.com/in/samrueby 20 | Mentee: true 21 | --- 22 | From GeoCities to serverless applications on Azure, I have over 10 years of professional experience creating feature-rich and maintainable web applications. 23 | -------------------------------------------------------------------------------- /input/community/speakers/sanuka-wijegunaratne.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Sanuka Wijegunaratne 3 | Location: Colombo, Sri Lanka 4 | Email: swijegunaratne@gmail.com 5 | Language: 6 | - English 7 | Topics: 8 | - ASP.NET MVC 9 | - ASP.NET Web API 10 | - Azure 11 | Twitter: https://twitter.com/wisanuka 12 | GitHub: https://github.com/wisanuka 13 | LinkedIn: https://linkedin.com/in/wisanuka 14 | Instagram: https://instagram.com/wisanuka 15 | Mentee: true 16 | --- 17 | I have involved in different types of web and desktop software development projects in related to .Net and Azure stack over the past 9 years. Microsoft certifications like MCSD along with my bachelor's and masters are some of my key career achievements. 18 | I would like to share my knowledge and experience with the community by involving knowledge sharing sessions. 19 | -------------------------------------------------------------------------------- /input/community/speakers/savino-carlone.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Savino Carlone 3 | Language: 4 | - English 5 | Topics: 6 | - .NET 7 | - ASP.NET 8 | - ASP.NET MVC 9 | - ASP.NET Web API 10 | - Azure 11 | - C# 12 | - Data 13 | - Diversity & Inclusion 14 | - Human Skills 15 | - NuGet 16 | Twitter: https://twitter.com/SaviCarlone 17 | LinkedIn: https://www.linkedin.com/in/savino-carlone-306b0897/ 18 | MeetUp: https://www.meetup.com/it-IT/Torino-NET-User-Group 19 | Mentee: true 20 | --- 21 | Most than speaker, I should prefer "presenter". 22 | In Torino.Net Users Group, that is under DotNetFoundation, I usually do it and it works. 23 | As I am programmer but also journalist, I am able to go deeper into the arguments with the speaker itself. 24 | -------------------------------------------------------------------------------- /input/community/speakers/shay-rojansky.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Shay Rojansky 3 | Pronouns: his/him 4 | Location: Berlin, Germany 5 | Email: roji@roji.org 6 | Language: 7 | - English 8 | - French 9 | - Hebrew 10 | Topics: 11 | - .NET 12 | - C# 13 | - Data 14 | - Entity Framework 15 | - JetBrains Rider 16 | - Open Source 17 | Blog: https://roji.org 18 | Feed: https://www.roji.org/feed.xml 19 | Twitter: https://twitter.com/shayrojansky 20 | GitHub: https://github.com/roji/ 21 | StackOverflow: https://stackoverflow.com/users/640325/shay-rojansky 22 | Mentor: true 23 | --- 24 | Microsoft software engineer working on .NET data access and perf, member of the Entity Framework team. Lead dev of Npgsql, the PostgreSQL provider. 25 | 26 | I've given multiple talks in international conferences, see https://www.roji.org/talks. 27 | -------------------------------------------------------------------------------- /input/community/speakers/steve-bilogan.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Steve Bilogan 3 | Location: Kingston, Ontario, Canada 4 | Email: steve.bilogan@gmail.com 5 | Language: 6 | - English 7 | Topics: 8 | - .NET 9 | - Android 10 | - C# 11 | - XAML 12 | - iOS 13 | - Mobile Development 14 | - Xamarin 15 | - Xamarin.Forms 16 | Twitter: https://twitter.com/BiloganSteve 17 | GitHub: https://github.com/kazo0/ 18 | LinkedIn: https://www.linkedin.com/in/sbilogan/ 19 | --- 20 | Steve is currently a Senior Engineer and one of the main contributors on the open source Uno Platform. Steve's main passion is in mobile development and likes to tinker with different cross-platform mobile dev frameworks in his free time. 21 | -------------------------------------------------------------------------------- /input/community/speakers/sven-malvik.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Sven Malvik 3 | Location: Oslo, Norway 4 | Email: sven@malvik.de 5 | Language: 6 | - English 7 | Topics: 8 | - Azure 9 | Blog: https://www.svenmalvik.com 10 | LinkedIn: https://www.linkedin.com/in/svenmalvik/ 11 | MeetUp: https://www.meetup.com/members/186953142/ 12 | YouTube: https://www.youtube.com/channel/UCA8o5gg35LO3qY5YF_3E3Ww 13 | Mentee: true 14 | --- 15 | Sven is Head of Cloud Platform at Vipps, a Norwegian Payment Service. His job is to ensure that Vipps builds a solid, secure, and flexible foundation in Azure that the developers want to use. He has spoken at conferences like Microsoft Build, Javazone Oslo, Tech X Oslo as part of the keynote, and various Meetup groups. He is also awarded with the Microsoft Azure Community and Content Hero Badger. 16 | -------------------------------------------------------------------------------- /input/community/speakers/vlad-iliescu.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Vlad Iliescu 3 | Location: Iasi, Romania 4 | Language: 5 | - English 6 | - Romanian 7 | Topics: 8 | - Artificial Intelligence 9 | - Machine Learning 10 | Blog: https://vladiliescu.net 11 | Twitter: https://twitter.com/vladiliescu 12 | GitHub: https://github.com/vladiliescu 13 | StackOverflow: https://stackoverflow.com/users/155697 14 | LinkedIn: https://www.linkedin.com/in/vladiliescu 15 | --- 16 | By day I work at Strongbytes as Head of AI, and by night I organize NDR, an annual Artificial Intelligence conference held in two of Romania's largest cities - Iasi and Bucharest. By twilight I'm a Microsoft Most Valuable Professional on AI. 17 | -------------------------------------------------------------------------------- /input/corporate-sponsors/_directory.yaml: -------------------------------------------------------------------------------- 1 | RenderPostProcessTemplates: false 2 | ShouldOutput: false -------------------------------------------------------------------------------- /input/corporate-sponsors/aws.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: AWS 3 | logo: assets/corporate-sponsors/amazon.png 4 | url: https://aws.amazon.com/ 5 | order: 1 6 | --- 7 | -------------------------------------------------------------------------------- /input/corporate-sponsors/devexpress.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: devexpress 3 | logo: assets/corporate-sponsors/devexpress-logo-2020.png 4 | url: https://www.devexpress.com/ 5 | order: 2 6 | --- 7 | -------------------------------------------------------------------------------- /input/corporate-sponsors/digicert.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: DigiCert 3 | logo: assets/corporate-sponsors/digicert.svg 4 | url: https://www.digicert.com/ 5 | order: 3 6 | --- 7 | -------------------------------------------------------------------------------- /input/corporate-sponsors/endjin.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: endjin 3 | logo: assets/corporate-sponsors/endjin.png 4 | url: https://www.endjin.com/ 5 | order: 4 6 | --- -------------------------------------------------------------------------------- /input/corporate-sponsors/microsoft.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Microsoft 3 | logo: assets/corporate-sponsors/Microsoft.png 4 | url: https://www.microsoft.com/ 5 | order: 5 6 | --- 7 | -------------------------------------------------------------------------------- /input/corporate-sponsors/okta.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Okta 3 | logo: assets/corporate-sponsors/okta.png 4 | url: https://developer.okta.com/ 5 | order: 7 6 | --- 7 | -------------------------------------------------------------------------------- /input/corporate-sponsors/progress-telerik.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Progress Telerik 3 | logo: assets/corporate-sponsors/progress-telerik.png 4 | url: https://www.telerik.com/open 5 | order: 8 6 | --- 7 | -------------------------------------------------------------------------------- /input/corporate-sponsors/uno.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Uno Platform 3 | logo: assets/corporate-sponsors/uno.png 4 | url: https://www.platform.uno/ 5 | order: 9 6 | --- 7 | -------------------------------------------------------------------------------- /input/corporate-sponsors/vmware.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: VMware 3 | logo: assets/corporate-sponsors/vmware.png 4 | url: https://tanzu.vmware.com/ 5 | order: 10 6 | --- 7 | -------------------------------------------------------------------------------- /input/corporate-sponsors/volosoft.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Volosoft 3 | logo: assets/corporate-sponsors/volosoft.png 4 | url: https://volosoft.com/ 5 | order: 11 6 | --- 7 | -------------------------------------------------------------------------------- /input/example.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Example 3 | image: /img/dot_bot.png 4 | Excluded: true 5 | --- 6 | 7 | # .NET Foundation Campaign: [Your Name Here] 8 | 9 | ## Why I'm Running 10 | Hi, I'm Example McExampleface, and I want to make a difference in the .NET Open Source community. 11 | 12 | I think we really need to focus on the student community. If elected, I'm going to work hard to 13 | get students involved. 14 | 15 | ## My .NET Open Source Contributions 16 | I have lead the nExample project for the past few years. 17 | 18 | ## Links 19 | * [My blog](https://dotnetfoundation.org/blog) 20 | 21 | ## Contact Information 22 | * Twitter: [https://twitter.com/dotnetfdn](@dotnetfdn) 23 | * GitHub: [https://github.com/dotnet](@dotnet) 24 | -------------------------------------------------------------------------------- /input/img/DATS-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/DATS-banner.jpg -------------------------------------------------------------------------------- /input/img/DATS-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/DATS-banner.png -------------------------------------------------------------------------------- /input/img/DATS_Horz_WhiteOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/DATS_Horz_WhiteOrange.png -------------------------------------------------------------------------------- /input/img/Ellipse_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/Ellipse_1.png -------------------------------------------------------------------------------- /input/img/JetBrains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/JetBrains.png -------------------------------------------------------------------------------- /input/img/Layer 15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/Layer 15.png -------------------------------------------------------------------------------- /input/img/Microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/Microsoft.png -------------------------------------------------------------------------------- /input/img/Red-Hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/Red-Hat.png -------------------------------------------------------------------------------- /input/img/Samsung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/Samsung.png -------------------------------------------------------------------------------- /input/img/Shape 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/Shape 2.png -------------------------------------------------------------------------------- /input/img/Unity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/Unity.png -------------------------------------------------------------------------------- /input/img/announcing-speakers-bureau-filtering.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/announcing-speakers-bureau-filtering.jpg -------------------------------------------------------------------------------- /input/img/announcing-speakers-bureau-map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/announcing-speakers-bureau-map.jpg -------------------------------------------------------------------------------- /input/img/art-ball-shaped-blur-326036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/art-ball-shaped-blur-326036.png -------------------------------------------------------------------------------- /input/img/building_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/building_icon.png -------------------------------------------------------------------------------- /input/img/bullhorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/bullhorn.png -------------------------------------------------------------------------------- /input/img/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/calendar.png -------------------------------------------------------------------------------- /input/img/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/chat.png -------------------------------------------------------------------------------- /input/img/comp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/comp.png -------------------------------------------------------------------------------- /input/img/developers_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/developers_icon.png -------------------------------------------------------------------------------- /input/img/dotNetFoundationHorizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/dotNetFoundationHorizontal.png -------------------------------------------------------------------------------- /input/img/dot_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/dot_bot.png -------------------------------------------------------------------------------- /input/img/f2f-long.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/f2f-long.jpg -------------------------------------------------------------------------------- /input/img/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /input/img/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /input/img/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /input/img/favicon/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #68217a 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /input/img/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /input/img/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /input/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/favicon/favicon.ico -------------------------------------------------------------------------------- /input/img/favicon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/favicon/favicon.png -------------------------------------------------------------------------------- /input/img/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /input/img/github_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/github_icon.png -------------------------------------------------------------------------------- /input/img/globe_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/globe_icon.png -------------------------------------------------------------------------------- /input/img/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/google.png -------------------------------------------------------------------------------- /input/img/home_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/home_hero.jpg -------------------------------------------------------------------------------- /input/img/home_hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/home_hero.webp -------------------------------------------------------------------------------- /input/img/ic_fluent_calendar_24_regular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /input/img/ic_fluent_reading_list_24_regular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /input/img/ic_fluent_video_clip_24_regular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /input/img/ladies_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/ladies_bg.png -------------------------------------------------------------------------------- /input/img/ladies_bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/ladies_bg.webp -------------------------------------------------------------------------------- /input/img/logo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/logo_big.png -------------------------------------------------------------------------------- /input/img/meetup_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/meetup_logo.png -------------------------------------------------------------------------------- /input/img/meetup_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/meetup_map.png -------------------------------------------------------------------------------- /input/img/meetup_map.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/meetup_map.webp -------------------------------------------------------------------------------- /input/img/meetup_map_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/meetup_map_new.png -------------------------------------------------------------------------------- /input/img/member_projects_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/member_projects_icon.png -------------------------------------------------------------------------------- /input/img/outreach-needs-you.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/outreach-needs-you.jpg -------------------------------------------------------------------------------- /input/img/swag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/swag.png -------------------------------------------------------------------------------- /input/img/swag_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/swag_background.png -------------------------------------------------------------------------------- /input/img/swag_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/swag_background.webp -------------------------------------------------------------------------------- /input/img/whiteboard_guy_with_dotbot_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/whiteboard_guy_with_dotbot_.png -------------------------------------------------------------------------------- /input/img/whiteboard_guy_with_dotbot_.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet-foundation/website/87379e551f1eb31e1ac374b58caf256bca7161f1/input/img/whiteboard_guy_with_dotbot_.webp -------------------------------------------------------------------------------- /input/js/counter.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | $('.counter').counterUp({ delay: 10, time: 2e3 }); 3 | }); -------------------------------------------------------------------------------- /input/manifest.json: -------------------------------------------------------------------------------- 1 | ContentType: Asset 2 | --- 3 | { 4 | "ShouldOutput": true, 5 | "name": "App", 6 | "icons": [ 7 | { 8 | "src": "/img/favicon/android-chrome-192x192.png", 9 | "sizes": "192x192", 10 | "type": "image/png" 11 | }, 12 | { 13 | "src": "/img/favicon/android-chrome-512x512.png", 14 | "sizes": "512x512", 15 | "type": "image/png" 16 | } 17 | ], 18 | "theme_color": "#68217a", 19 | "background_color": "#68217a", 20 | "display": "standalone" 21 | } -------------------------------------------------------------------------------- /input/projects/data/ConferenceXP.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: ConferenceXP 3 | Contributor: Outercurve 4 | Logo: outercurve.png 5 | Web: https://cct.cs.washington.edu/ 6 | IsActive: false 7 | --- 8 | # ConferenceXP 9 | 10 | [ConferenceXP](https://cct.cs.washington.edu/) is an open source video conferencing and collaboration platform, built on Microsoft Windows technology 11 | 12 | ## Project Details 13 | 14 | * [Project Info Site](https://cct.cs.washington.edu/) 15 | * [Project Code Site](https://github.com/conferencexp/conferencexp) 16 | * Project License Type: [Apache 2.0](https://github.com/conferencexp/conferencexp/blob/master/LICENSE.txt) 17 | * Project Main Contacts: [Fred Videon](https://github.com/fvideon). 18 | 19 | ## Quicklinks 20 | 21 | * [Documentation](https://cct.cs.washington.edu/project-wiki/index.php/Building_ConferenceXP) 22 | -------------------------------------------------------------------------------- /input/projects/data/ILMerge.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: ILMerge 3 | Contributor: Microsoft 4 | Logo: dotnet-platform.png 5 | Web: https://github.com/dotnet/ILMerge 6 | --- 7 | # ILMerge 8 | 9 | [ILMerge](https://github.com/dotnet/ILMerge) is a utility that merges multiple .NET assemblies into a single assembly. It is freely available for use and is available as a NuGet package 10 | 11 | ## Project Details 12 | 13 | * [Project Info Site](https://github.com/dotnet/ILMerge) 14 | * [Project Code Site](https://github.com/dotnet/ILMerge) 15 | * Project License Type: [MIT](https://github.com/dotnet/ILMerge/blob/master/LICENSE) 16 | * Project Main Contacts: [Mike Barnett](https://github.com/mike-barnett). 17 | 18 | ## Quicklinks 19 | 20 | * [Documentation](https://github.com/dotnet/ILMerge/blob/master/ilmerge-manual.md) 21 | -------------------------------------------------------------------------------- /input/projects/data/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = @"_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /input/projects/data/_directory.yaml: -------------------------------------------------------------------------------- 1 | DestinationPath: => new NormalizedPath("projects") / Destination.FileName.ChangeExtension(".html") -------------------------------------------------------------------------------- /input/projects/data/channels.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Channels 3 | Contributor: David Fowler 4 | Logo: dotnet-platform.png 5 | Web: https://github.com/davidfowl/Channels 6 | IsActive: false 7 | --- 8 | # Channels 9 | 10 | [Channels](https://github.com/davidfowl/Channels) is a push based .NET Streams project. It has been archived and replaced with [Pipelines (System.IO.Pipelines)](https://github.com/dotnet/corefxlab) 11 | 12 | ## Project Details 13 | 14 | * [Project Info Site](https://github.com/davidfowl/Channels) 15 | * [Project Code Site](https://github.com/davidfowl/Channels) 16 | * Project License Type: [Apache 2.0](https://github.com/davidfowl/Channels/blob/master/LICENSE.md) 17 | * Project Main Contacts: [David Fowler](https://github.com/davidfowl). 18 | 19 | -------------------------------------------------------------------------------- /input/projects/data/conceptual-docs.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: .NET Platform conceptual docs 3 | Contributor: .NET Platform 4 | Logo: dotnet-platform.png 5 | Web: https://github.com/dotnet/docs 6 | --- 7 | # .NET Docs 8 | 9 | This repository contains the conceptual documentation for .NET. The [.NET documentation site](https://docs.microsoft.com/dotnet) is built from multiple repositories in addition to this one: 10 | 11 | - [API reference](https://github.com/dotnet/dotnet-api-docs) 12 | - [.NET Compiler Platform SDK reference](https://github.com/dotnet/roslyn-api-docs) 13 | 14 | -------------------------------------------------------------------------------- /input/projects/data/llvmsharp.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: LLVMSharp 3 | Contributor: Microsoft 4 | Web: https://github.com/dotnet/llvmsharp 5 | --- 6 | # LLVMSharp 7 | 8 | [LLVMSharp](https://github.com/dotnet/llvmsharp) is a multi-platform .NET Standard library for accessing the LLVM infrastructure. The bindings are auto-generated using [ClangSharp](https://github.com/dotnet/clangsharp) parsing LLVM-C header files. 9 | 10 | # Project Details 11 | 12 | - [Project Code Site](https://github.com/dotnet/llvmsharp) 13 | - Project License Type: [MIT](https://github.com/dotnet/llvmsharp/blob/main/LICENSE.md) 14 | 15 | ### Quicklinks 16 | 17 | - [Building the Repo](https://github.com/microsoft/llvmsharp#building-llvmsharp) 18 | - [Discussions](https://github.com/dotnet/llvmsharp/discussions) 19 | -------------------------------------------------------------------------------- /input/projects/data/mono.cecil.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Cecil 3 | Contributor: Jb Evain 4 | Logo: cecil.jpg 5 | Web: http://evain.net/ 6 | --- 7 | # Cecil 8 | 9 | [Cecil](https://github.com/jbevain/cecil) is a library to generate and inspect programs and libraries in the ECMA CIL form. 10 | 11 | ## Project Details 12 | 13 | * [Project Info Site](https://github.com/jbevain/cecil) 14 | * [Project Code Site](https://github.com/jbevain/cecil) 15 | * Project License Type: [MIT/X11](https://github.com/jbevain/cecil/blob/master/LICENSE.txt) 16 | * Project Main Contact : [Jb Evain](https://github.com/jbevain) 17 | 18 | ### Quick Links 19 | 20 | * [Documentation](https://github.com/jbevain/cecil/wiki) 21 | * [Discussion](https://groups.google.com/group/mono-cecil) 22 | -------------------------------------------------------------------------------- /input/projects/data/mqttnet.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: MQTTnet 3 | Contributor: MQTTnet 4 | Web: https://github.com/dotnet/MQTTnet 5 | --- 6 | # MQTTnet 7 | 8 | MQTTnet is a high performance .NET library for MQTT based communication. It provides a MQTT client and a MQTT server (broker) and supports the MQTT protocol up to version 5. 9 | 10 | ## Project Details 11 | 12 | * [Project Info Site](https://github.com/dotnet/MQTTnet) 13 | * [Project Code Site](https://github.com/dotnet/MQTTnet) 14 | * Project License Type: [MIT](https://github.com/dotnet/MQTTnet/blob/master/LICENSE) 15 | * Project Main Contacts: [Christian Kratky](https://github.com/chkr1011). 16 | 17 | ## Quicklinks 18 | 19 | * [Documentation](https://github.com/dotnet/MQTTnet/wiki) 20 | * [Samples](https://github.com/dotnet/MQTTnet/tree/master/Samples) -------------------------------------------------------------------------------- /input/projects/data/neoproject.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Neo Project 3 | Contributor: The NEO Foundation 4 | Logo: neo-logo.svg 5 | Web: https://neo.org/ 6 | --- 7 | # NEO Project 8 | 9 | The [NEO Project](https://neo.org/) is a modern distributed network for the Smart Economy. 10 | 11 | ## Project Details 12 | 13 | * [Project Info Site](https://neo.org/) 14 | * [Project Code Site](https://github.com/neo-project) 15 | * Project License Type: [MIT](https://github.com/neo-project/neo/blob/master/LICENSE) 16 | * Project Main Contacts: [Erik Zhang](https://github.com/erikzhang) 17 | 18 | ## Quicklinks 19 | 20 | * [Documentation](https://docs.neo.org/docs/en-us/index.html) 21 | * [Contribute](https://github.com/neo-project/neo/blob/master/CONTRIBUTING.md) 22 | -------------------------------------------------------------------------------- /input/projects/data/nupattern.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: nupattern 3 | Contributor: Outercurve 4 | Logo: outercurve.png 5 | Web: https://archive.codeplex.com/?p=nupattern 6 | IsActive: false 7 | --- 8 | # nupattern 9 | 10 | [nupattern](https://archive.codeplex.com/?p=nupattern) is the platform and tools that make it easy to create your own custom tooling in Visual Studio. 11 | 12 | ## Project Details 13 | 14 | * [Project Info Site](https://archive.codeplex.com/?p=nupattern) 15 | * [Project Code Site](https://codeplexarchive.blob.core.windows.net/archive/projects/nupattern/nupattern.zip) 16 | * Project License Type: 17 | * Project Main Contacts: None 18 | 19 | ## Quicklinks 20 | 21 | * [Documentation](https://archive.codeplex.com/?p=nupatterns) 22 | -------------------------------------------------------------------------------- /input/projects/data/signservice.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: SignService 3 | Contributor: Claire Novotny 4 | --- 5 | # SignService 6 | 7 | SignService aims to make it easier to integrate code signing into a CI process by providing a secured API for submitting artifacts to be signed by a code signing cert held on the server. It uses Azure AD and Azure Key Vault's HSM for security. 8 | 9 | ## Project Details 10 | 11 | * [Project Info Site](https://github.com/dotnet/signservice) 12 | * [Project Code Site](https://github.com/dotnet/signservice) 13 | * Project License Type: [MIT](https://github.com/dotnet/SignService/blob/master/LICENSE) 14 | * Project Main Contact : [Claire NOvotny](https://github.com/clairernovotny) 15 | 16 | ### Quick Links 17 | 18 | * [Documentation](https://github.com/dotnet/SignService/tree/master/docs) 19 | -------------------------------------------------------------------------------- /input/projects/data/torchsharp.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: TorchSharp 3 | Contributor: Microsoft 4 | Logo: microsoft.jpg 5 | Web: https://www.microsoft.com 6 | --- 7 | # TorchSharp 8 | 9 | [TorchSharp](https://github.com/dotnet/TorchSharp) is a .NET project that provides access to the library that powers PyTorch. 10 | 11 | # Project Details 12 | 13 | [README.md](https://github.com/dotnet/TorchSharp/blob/main/README.md) 14 | 15 | ### Quicklinks 16 | 17 | * [Documentation](https://github.com/dotnet/TorchSharp/tree/main/docfx) 18 | * [Discussions](https://github.com/dotnet/TorchSharp/discussions) 19 | -------------------------------------------------------------------------------- /input/projects/data/webformsmvp.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Web Forms MVP 3 | Contributor: Outercurve 4 | Logo: outercurve.png 5 | Web: https://github.com/webformsmvp/webformsmvp 6 | IsActive: false 7 | --- 8 | # Web Forms MVP 9 | 10 | [Web Forms MVP](https://github.com/webformsmvp/webformsmvp) is a simple Model-View-Presenter framework for ASP.NET Web Forms. 11 | 12 | ## Project Details 13 | 14 | * [Project Info Site](https://github.com/webformsmvp/webformsmvp) 15 | * [Project Code Site](https://github.com/webformsmvp/webformsmvp) 16 | * Project License Type: [MS-PL](https://github.com/webformsmvp/webformsmvp/blob/master/LICENSE.txt) 17 | * Project Main Contacts: None 18 | 19 | ## Quicklinks 20 | 21 | * [Documentation](https://github.com/webformsmvp/webformsmvp/wiki) 22 | -------------------------------------------------------------------------------- /input/projects/data/xamarin.android.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Xamarin Android 3 | Contributor: Xamarin 4 | Logo: xamarin.jpg 5 | Web: https://xamarin.com/ 6 | --- 7 | # Xamarin Android 8 | 9 | Xamarin.Android provides open-source bindings of the Android SDK for use with .NET managed languages such as C#. 10 | 11 | ## Project Details 12 | 13 | * [Project Info Site](https://dotnet.microsoft.com/apps/xamarin/mobile-apps#android) 14 | * [Project Code Site](https://github.com/xamarin/xamarin-android) 15 | * Project License Type: [MIT](https://github.com/xamarin/xamarin-android/blob/master/LICENSE) 16 | 17 | ## Quicklinks 18 | 19 | * [Documentation](https://docs.microsoft.com/en-us/xamarin/android/) 20 | * [Discussions](https://github.com/xamarin/xamarin-android/issues) -------------------------------------------------------------------------------- /input/projects/data/xamarin.forms.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Xamarin.Forms 3 | Contributor: Xamarin 4 | Logo: xamarin.jpg 5 | Web: https://xamarin.com/ 6 | --- 7 | # Xamarin.Forms 8 | 9 | Xamarin.Forms provides a way to quickly build native apps for iOS, Android, Windows and macOS, completely in C#. 10 | 11 | ## Project Details 12 | 13 | * [Project Info Site](https://dotnet.microsoft.com/apps/xamarin/xamarin-forms) 14 | * [Project Code Site](https://github.com/xamarin/Xamarin.Forms) 15 | * Project License Type: [MIT](https://github.com/xamarin/Xamarin.Forms/blob/master/LICENSE) 16 | 17 | ## Quicklinks 18 | 19 | * [Documentation](https://docs.microsoft.com/en-us/xamarin/xamarin-forms/) 20 | * [Discussions](https://github.com/xamarin/Xamarin.Forms/issues) 21 | -------------------------------------------------------------------------------- /input/projects/data/xamarincommunitytoolkit.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Xamarin Community Toolkit 3 | Contributor: Xamarin 4 | Logo: xamarincommunitytoolkit.png 5 | Web: https://github.com/xamarin/XamarinCommunityToolkit 6 | --- 7 | # Xamarin Community Toolkit 8 | 9 | The Xamarin Community Toolkit is a collection of Animations, Behaviors, Converters, and Effects and more for mobile development with Xamarin.Forms. It simplifies and demonstrates common developer tasks building iOS, Android, and UWP apps with Xamarin.Forms. 10 | 11 | ## Project Details 12 | 13 | * [Project Code Site](https://github.com/xamarin/XamarinCommunityToolkit) 14 | * Project License Type: [MIT](https://github.com/xamarin/XamarinCommunityToolkit/blob/main/LICENSE) 15 | 16 | ## Quicklinks 17 | 18 | * [Discussions](https://github.com/xamarin/XamarinCommunityToolkit/issues) 19 | -------------------------------------------------------------------------------- /input/projects/data/xamarinfacebook.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Xamarin Components for Facebook 3 | Contributor: Xamarin 4 | Logo: xamarin.jpg 5 | Web: https://dotnet.microsoft.com/apps/xamarin 6 | --- 7 | # Xamarin Components for Facebook 8 | 9 | [Xamarin Components for Facebook](https://dotnet.microsoft.com/apps/xamarin) are Xamarin.Android and Xamarin.iOS bindings for Facebook SDKs. 10 | 11 | ## Project Details 12 | 13 | * [Project Info Site](https://dotnet.microsoft.com/apps/xamarin) 14 | * [Project Code Site](https://github.com/xamarin/facebookcomponents) 15 | * Project License Type: [MIT](https://github.com/xamarin/FacebookComponents/blob/master/License.md) 16 | * Project Main Contacts: [Israel Soto](https://github.com/SotoiGhost) 17 | 18 | ## Quicklinks 19 | 20 | * [Documentation](https://dotnet.microsoft.com/apps/xamarin) 21 | -------------------------------------------------------------------------------- /input/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | --------------------------------------------------------------------------------