├── Sample ├── OpenSans-Regular.ttf ├── Directory.Build.props ├── Sample.csproj └── Program.cs ├── test.ps1 ├── NuGet.config ├── Maui.Generators ├── Maui.Generators.targets ├── Maui.Generators.csproj └── MauiRegistrarSourceGenerator.cs ├── LICENSE ├── Maui.Generators.sln ├── README.md └── .gitignore /Sample/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Redth/Maui.Generators.Prototype/HEAD/Sample/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Sample/Directory.Build.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | ../packages 5 | 6 | 7 | -------------------------------------------------------------------------------- /test.ps1: -------------------------------------------------------------------------------- 1 | New-Item -ItemType Directory -Path .\logs\ -Force 2 | New-Item -ItemType Directory -Path .\output\ -Force 3 | 4 | & msbuild /r /t:"Rebuild;Pack" ./Maui.Generators/Maui.Generators.csproj /bl:logs/gen.binlog 5 | 6 | Remove-Item ./packages/maui.generators -Force -Recurse 7 | 8 | & msbuild /r /t:Rebuild ./Sample/Sample.csproj /bl:logs/sample.binlog 9 | -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Sample/Sample.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net5.0 6 | preview 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Maui.Generators/Maui.Generators.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Jonathan Dick 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Maui.Generators/Maui.Generators.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | netstandard2.0 4 | preview 5 | true 6 | False 7 | 8 | Maui.Generators 9 | Maui Source code generators 10 | 0.1.0 11 | Source code generators for Maui: Fonts, etc 12 | Copyright © Redth 13 | MIT 14 | ..\output 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /Maui.Generators.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.808.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Maui.Generators", "Maui.Generators\Maui.Generators.csproj", "{EFF2C6BF-3ADB-49D4-9850-ABC5A48A926A}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sample", "Sample\Sample.csproj", "{80BFA016-2B3F-4E2B-8702-EFC33F062ED3}" 9 | EndProject 10 | Global 11 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 12 | Debug|Any CPU = Debug|Any CPU 13 | Release|Any CPU = Release|Any CPU 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {EFF2C6BF-3ADB-49D4-9850-ABC5A48A926A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 17 | {EFF2C6BF-3ADB-49D4-9850-ABC5A48A926A}.Debug|Any CPU.Build.0 = Debug|Any CPU 18 | {EFF2C6BF-3ADB-49D4-9850-ABC5A48A926A}.Release|Any CPU.ActiveCfg = Release|Any CPU 19 | {EFF2C6BF-3ADB-49D4-9850-ABC5A48A926A}.Release|Any CPU.Build.0 = Release|Any CPU 20 | {80BFA016-2B3F-4E2B-8702-EFC33F062ED3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 21 | {80BFA016-2B3F-4E2B-8702-EFC33F062ED3}.Debug|Any CPU.Build.0 = Debug|Any CPU 22 | {80BFA016-2B3F-4E2B-8702-EFC33F062ED3}.Release|Any CPU.ActiveCfg = Release|Any CPU 23 | {80BFA016-2B3F-4E2B-8702-EFC33F062ED3}.Release|Any CPU.Build.0 = Release|Any CPU 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {B0A8E962-56AA-4A10-A5EC-53087DCE2903} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /Sample/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Reflection; 5 | 6 | namespace MauiSourceGenerators 7 | { 8 | class Program 9 | { 10 | static void Main(string[] args) 11 | { 12 | // Not needed with module initializer in generated code 13 | // RegisterRegistrarInAssemblies(); 14 | 15 | var font = GetFont("OpenSans-Regular.ttf"); 16 | 17 | Console.WriteLine($"Font: {font.attribute.FontFileName} Alias: {font.attribute.Alias}"); 18 | 19 | Console.ReadLine(); 20 | } 21 | 22 | // Just some code to peek into the internal fonts and test if the registration actually happened 23 | // You wouln't actually have this code in your app 24 | static (global::Xamarin.Forms.ExportFontAttribute attribute, global::System.Reflection.Assembly assembly) GetFont(string name) 25 | { 26 | var fontRegistrarType = typeof(global::Xamarin.Forms.Internals.FontRegistrar); 27 | var embeddedFontsField = fontRegistrarType.GetField("EmbeddedFonts", BindingFlags.Static | BindingFlags.NonPublic); 28 | 29 | var embeddedFonts = (Dictionary)embeddedFontsField.GetValue(null); 30 | 31 | return embeddedFonts[name]; 32 | } 33 | 34 | // Not needed with module initializer in generated code 35 | // static void RegisterRegistrarInAssemblies() 36 | // { 37 | // foreach (var asm in AppDomain.CurrentDomain.GetAssemblies()) 38 | // { 39 | // // Skip System 40 | // if (asm.FullName.StartsWith("System.", StringComparison.OrdinalIgnoreCase)) 41 | // continue; 42 | 43 | // var t = asm.GetType("Maui.Generated.MauiGeneratedRegistrar"); 44 | 45 | // var m = t?.GetMethod("Register"); 46 | 47 | // m?.Invoke(null, null); 48 | // } 49 | // } 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Maui.Generators.Prototype 2 | A playground with some conceptual generators that could be used in Maui / Single Project 3 | 4 | 5 | # Experiments 6 | 7 | 8 | ## Shared Fonts 9 | 10 | The generator can take items from your project such as: 11 | 12 | ```xml 13 | 14 | 15 | 16 | ``` 17 | 18 | Your font will automatically be included as an EmbeddedResource, and in addition, the source generator 19 | will automatically generate code to register the font with Xamarin.Forms' registrar: 20 | 21 | ```csharp 22 | using System.CodeDom.Compiler; 23 | using System.Reflection; 24 | using Xamarin.Forms; 25 | using Xamarin.Forms.Internals; 26 | 27 | namespace Maui.Generated 28 | { 29 | [GeneratedCode("Maui.Generators", "1.0.0.0")] 30 | internal class MauiGeneratedRegistrar 31 | { 32 | [ModuleInitializer] 33 | internal static void Register() 34 | { 35 | FontRegistrar.Register(new ExportFontAttribute("OpenSans-Regular.ttf") 36 | { 37 | Alias = "OpenSans" 38 | }, Assembly.GetExecutingAssembly()); 39 | } 40 | } 41 | } 42 | ``` 43 | 44 | 45 | Using the `[ModuleInitializer]` attribute on the generated `Register()` method will cause it to be invoked automatically at runtime. This should almost always work, however it should be noted that the module initializer marked methods are only guaranteed to run before any other code is invoked from its assembly. 46 | 47 | If an assembly is doing some sort of handler registration, it most likely is doing the registration for implementations or resources it contains, therefore the module initializer will always be called before the implementations are used anyway. 48 | 49 | If an assembly contains things that don't need to be referenced by code (ie: just some fonts and no actual code), it would need to use some sort of `Init()` call to avoid being linked out. I haven't thought of any great scenario which causes module initializers to be a problem yet. 50 | 51 | We need to consider more scenarios where the module initializer could be problematic for each use case of generated code. 52 | 53 | Finally, if we have ` 57 | 58 | 59 | ``` 60 | 61 | Which would allow any `.ttf` or `.otf` font inside the project's `Resources/Fonts/` directory to be automatically included in the build, and have registration code generated and executed at runtime. 62 | 63 | 64 | ### More experiments to come! 65 | -------------------------------------------------------------------------------- /Maui.Generators/MauiRegistrarSourceGenerator.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Text; 5 | using Microsoft.CodeAnalysis; 6 | 7 | namespace Maui.Generators 8 | { 9 | [Generator] 10 | public class MauiRegistrarSourceGenerator : ISourceGenerator 11 | { 12 | List mauiRegistrarGenerators; 13 | 14 | public void Initialize(GeneratorInitializationContext context) 15 | { 16 | mauiRegistrarGenerators = new List 17 | { 18 | new MauiFontRegistrarSourceGenerator(), 19 | }; 20 | } 21 | 22 | public void Execute(GeneratorExecutionContext context) 23 | { 24 | var src = new StringBuilder(); 25 | 26 | src.Append(@" 27 | namespace Maui.Generated 28 | { 29 | [global::System.CodeDom.Compiler.GeneratedCode(""Maui.Generators"", ""1.0.0.0"")] 30 | internal static class MauiGeneratedRegistrar 31 | { 32 | [global::System.Runtime.CompilerServices.ModuleInitializer] 33 | internal static void Register() 34 | { 35 | "); 36 | foreach (var g in mauiRegistrarGenerators) 37 | g.GenerateRegisterBodyCode(context, src); 38 | 39 | src.Append( 40 | @"} 41 | } 42 | }"); 43 | context.AddSource("Maui_Generated_MauiGeneratedRegistrar.cs", src.ToString()); 44 | } 45 | } 46 | 47 | public interface IMauiRegistrarSourceGenerator 48 | { 49 | void GenerateRegisterBodyCode(GeneratorExecutionContext context, StringBuilder sourceBuilder); 50 | } 51 | 52 | public class MauiFontRegistrarSourceGenerator : IMauiRegistrarSourceGenerator 53 | { 54 | public void GenerateRegisterBodyCode(GeneratorExecutionContext context, StringBuilder sourceBuilder) 55 | { 56 | foreach (var file in context.AdditionalFiles) 57 | { 58 | var extension = Path.GetExtension(file.Path); 59 | 60 | if (extension.Equals(".ttf", StringComparison.InvariantCultureIgnoreCase) 61 | || extension.Equals(".otf", StringComparison.InvariantCultureIgnoreCase)) 62 | { 63 | var alias = context.GetMSBuildItemMetadata(file, "FontAlias"); 64 | 65 | var filename = Path.GetFileName(file.Path); 66 | 67 | var srcAlias = string.IsNullOrWhiteSpace(alias) ? "null" : $"\"{alias}\""; 68 | 69 | sourceBuilder.AppendLine( 70 | @"global::Xamarin.Forms.Internals.FontRegistrar.Register( 71 | new global::Xamarin.Forms.ExportFontAttribute(""" + filename + @""") 72 | { Alias = " + srcAlias + @" }, 73 | global::System.Reflection.Assembly.GetExecutingAssembly());"); 74 | } 75 | } 76 | } 77 | } 78 | 79 | 80 | internal static class SourceGeneratorContextExtensions 81 | { 82 | public static string GetMSBuildItemMetadata( 83 | this GeneratorExecutionContext context, 84 | AdditionalText additionalText, 85 | string name, 86 | string defaultValue = default) 87 | { 88 | context.AnalyzerConfigOptions 89 | .GetOptions(additionalText) 90 | .TryGetValue($"build_metadata.AdditionalFiles.{name}", out var value); 91 | 92 | return value ?? defaultValue; 93 | } 94 | } 95 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.rsuser 8 | *.suo 9 | *.user 10 | *.userosscache 11 | *.sln.docstates 12 | 13 | # User-specific files (MonoDevelop/Xamarin Studio) 14 | *.userprefs 15 | 16 | # Mono auto generated files 17 | mono_crash.* 18 | 19 | # Build results 20 | [Dd]ebug/ 21 | [Dd]ebugPublic/ 22 | [Rr]elease/ 23 | [Rr]eleases/ 24 | x64/ 25 | x86/ 26 | [Aa][Rr][Mm]/ 27 | [Aa][Rr][Mm]64/ 28 | bld/ 29 | [Bb]in/ 30 | [Oo]bj/ 31 | [Ll]og/ 32 | [Ll]ogs/ 33 | 34 | # Visual Studio 2015/2017 cache/options directory 35 | .vs/ 36 | # Uncomment if you have tasks that create the project's static files in wwwroot 37 | #wwwroot/ 38 | 39 | .vscode/ 40 | 41 | # Visual Studio 2017 auto generated files 42 | Generated\ Files/ 43 | 44 | # MSTest test Results 45 | [Tt]est[Rr]esult*/ 46 | [Bb]uild[Ll]og.* 47 | 48 | # NUnit 49 | *.VisualState.xml 50 | TestResult.xml 51 | nunit-*.xml 52 | 53 | # Build Results of an ATL Project 54 | [Dd]ebugPS/ 55 | [Rr]eleasePS/ 56 | dlldata.c 57 | 58 | # Benchmark Results 59 | BenchmarkDotNet.Artifacts/ 60 | 61 | # .NET Core 62 | project.lock.json 63 | project.fragment.lock.json 64 | artifacts/ 65 | 66 | # StyleCop 67 | StyleCopReport.xml 68 | 69 | # Files built by Visual Studio 70 | *_i.c 71 | *_p.c 72 | *_h.h 73 | *.ilk 74 | *.meta 75 | *.obj 76 | *.iobj 77 | *.pch 78 | *.pdb 79 | *.ipdb 80 | *.pgc 81 | *.pgd 82 | *.rsp 83 | *.sbr 84 | *.tlb 85 | *.tli 86 | *.tlh 87 | *.tmp 88 | *.tmp_proj 89 | *_wpftmp.csproj 90 | *.log 91 | *.vspscc 92 | *.vssscc 93 | .builds 94 | *.pidb 95 | *.svclog 96 | *.scc 97 | 98 | # Chutzpah Test files 99 | _Chutzpah* 100 | 101 | # Visual C++ cache files 102 | ipch/ 103 | *.aps 104 | *.ncb 105 | *.opendb 106 | *.opensdf 107 | *.sdf 108 | *.cachefile 109 | *.VC.db 110 | *.VC.VC.opendb 111 | 112 | # Visual Studio profiler 113 | *.psess 114 | *.vsp 115 | *.vspx 116 | *.sap 117 | 118 | # Visual Studio Trace Files 119 | *.e2e 120 | 121 | # TFS 2012 Local Workspace 122 | $tf/ 123 | 124 | # Guidance Automation Toolkit 125 | *.gpState 126 | 127 | # ReSharper is a .NET coding add-in 128 | _ReSharper*/ 129 | *.[Rr]e[Ss]harper 130 | *.DotSettings.user 131 | 132 | # TeamCity is a build add-in 133 | _TeamCity* 134 | 135 | # DotCover is a Code Coverage Tool 136 | *.dotCover 137 | 138 | # AxoCover is a Code Coverage Tool 139 | .axoCover/* 140 | !.axoCover/settings.json 141 | 142 | # Visual Studio code coverage results 143 | *.coverage 144 | *.coveragexml 145 | 146 | # NCrunch 147 | _NCrunch_* 148 | .*crunch*.local.xml 149 | nCrunchTemp_* 150 | 151 | # MightyMoose 152 | *.mm.* 153 | AutoTest.Net/ 154 | 155 | # Web workbench (sass) 156 | .sass-cache/ 157 | 158 | # Installshield output folder 159 | [Ee]xpress/ 160 | 161 | # DocProject is a documentation generator add-in 162 | DocProject/buildhelp/ 163 | DocProject/Help/*.HxT 164 | DocProject/Help/*.HxC 165 | DocProject/Help/*.hhc 166 | DocProject/Help/*.hhk 167 | DocProject/Help/*.hhp 168 | DocProject/Help/Html2 169 | DocProject/Help/html 170 | 171 | # Click-Once directory 172 | publish/ 173 | 174 | # Publish Web Output 175 | *.[Pp]ublish.xml 176 | *.azurePubxml 177 | # Note: Comment the next line if you want to checkin your web deploy settings, 178 | # but database connection strings (with potential passwords) will be unencrypted 179 | *.pubxml 180 | *.publishproj 181 | 182 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 183 | # checkin your Azure Web App publish settings, but sensitive information contained 184 | # in these scripts will be unencrypted 185 | PublishScripts/ 186 | 187 | # NuGet Packages 188 | *.nupkg 189 | # NuGet Symbol Packages 190 | *.snupkg 191 | # The packages folder can be ignored because of Package Restore 192 | **/[Pp]ackages/* 193 | # except build/, which is used as an MSBuild target. 194 | !**/[Pp]ackages/build/ 195 | # Uncomment if necessary however generally it will be regenerated when needed 196 | #!**/[Pp]ackages/repositories.config 197 | # NuGet v3's project.json files produces more ignorable files 198 | *.nuget.props 199 | *.nuget.targets 200 | 201 | # Microsoft Azure Build Output 202 | csx/ 203 | *.build.csdef 204 | 205 | # Microsoft Azure Emulator 206 | ecf/ 207 | rcf/ 208 | 209 | # Windows Store app package directories and files 210 | AppPackages/ 211 | BundleArtifacts/ 212 | Package.StoreAssociation.xml 213 | _pkginfo.txt 214 | *.appx 215 | *.appxbundle 216 | *.appxupload 217 | 218 | # Visual Studio cache files 219 | # files ending in .cache can be ignored 220 | *.[Cc]ache 221 | # but keep track of directories ending in .cache 222 | !?*.[Cc]ache/ 223 | 224 | # Others 225 | ClientBin/ 226 | ~$* 227 | *~ 228 | *.dbmdl 229 | *.dbproj.schemaview 230 | *.jfm 231 | *.pfx 232 | *.publishsettings 233 | orleans.codegen.cs 234 | 235 | # Including strong name files can present a security risk 236 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 237 | #*.snk 238 | 239 | # Since there are multiple workflows, uncomment next line to ignore bower_components 240 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 241 | #bower_components/ 242 | 243 | # RIA/Silverlight projects 244 | Generated_Code/ 245 | 246 | # Backup & report files from converting an old project file 247 | # to a newer Visual Studio version. Backup files are not needed, 248 | # because we have git ;-) 249 | _UpgradeReport_Files/ 250 | Backup*/ 251 | UpgradeLog*.XML 252 | UpgradeLog*.htm 253 | ServiceFabricBackup/ 254 | *.rptproj.bak 255 | 256 | # SQL Server files 257 | *.mdf 258 | *.ldf 259 | *.ndf 260 | 261 | # Business Intelligence projects 262 | *.rdl.data 263 | *.bim.layout 264 | *.bim_*.settings 265 | *.rptproj.rsuser 266 | *- [Bb]ackup.rdl 267 | *- [Bb]ackup ([0-9]).rdl 268 | *- [Bb]ackup ([0-9][0-9]).rdl 269 | 270 | # Microsoft Fakes 271 | FakesAssemblies/ 272 | 273 | # GhostDoc plugin setting file 274 | *.GhostDoc.xml 275 | 276 | # Node.js Tools for Visual Studio 277 | .ntvs_analysis.dat 278 | node_modules/ 279 | 280 | # Visual Studio 6 build log 281 | *.plg 282 | 283 | # Visual Studio 6 workspace options file 284 | *.opt 285 | 286 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 287 | *.vbw 288 | 289 | # Visual Studio LightSwitch build output 290 | **/*.HTMLClient/GeneratedArtifacts 291 | **/*.DesktopClient/GeneratedArtifacts 292 | **/*.DesktopClient/ModelManifest.xml 293 | **/*.Server/GeneratedArtifacts 294 | **/*.Server/ModelManifest.xml 295 | _Pvt_Extensions 296 | 297 | # Paket dependency manager 298 | .paket/paket.exe 299 | paket-files/ 300 | 301 | # FAKE - F# Make 302 | .fake/ 303 | 304 | # CodeRush personal settings 305 | .cr/personal 306 | 307 | # Python Tools for Visual Studio (PTVS) 308 | __pycache__/ 309 | *.pyc 310 | 311 | # Cake - Uncomment if you are using it 312 | # tools/** 313 | # !tools/packages.config 314 | 315 | # Tabs Studio 316 | *.tss 317 | 318 | # Telerik's JustMock configuration file 319 | *.jmconfig 320 | 321 | # BizTalk build output 322 | *.btp.cs 323 | *.btm.cs 324 | *.odx.cs 325 | *.xsd.cs 326 | 327 | # OpenCover UI analysis results 328 | OpenCover/ 329 | 330 | # Azure Stream Analytics local run output 331 | ASALocalRun/ 332 | 333 | # MSBuild Binary and Structured Log 334 | *.binlog 335 | 336 | # NVidia Nsight GPU debugger configuration file 337 | *.nvuser 338 | 339 | # MFractors (Xamarin productivity tool) working folder 340 | .mfractor/ 341 | 342 | # Local History for Visual Studio 343 | .localhistory/ 344 | 345 | # BeatPulse healthcheck temp database 346 | healthchecksdb 347 | 348 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 349 | MigrationBackup/ 350 | 351 | # Ionide (cross platform F# VS Code tools) working folder 352 | .ionide/ 353 | 354 | logs/ 355 | packages/ 356 | output/ --------------------------------------------------------------------------------