├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── feature_request.md │ └── bug_report.md └── PULL_REQUEST_TEMPLATE.md ├── Dockerfile ├── LICENSE ├── action.yml ├── src ├── kustomize_build.sh └── entrypoint.sh ├── README.md └── .gitignore /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @karancode 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: twitter 4 | url: https://twitter.com/thanvi_karan 5 | about: Feel free to reach out! :smiley: 6 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine:3 2 | RUN apk add --update --no-cache bash ca-certificates curl git jq openssh 3 | RUN ["bin/sh", "-c", "mkdir -p /src"] 4 | COPY ["src", "/src/"] 5 | ENTRYPOINT ["/src/entrypoint.sh"] -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | **Details of Change** 2 | 3 | 4 | **Issue** 5 | 6 | 7 | **Test Results** 8 | 9 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea/enhancement for this action 4 | title: "[Feature]" 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | 12 | 13 | **Describe the solution you'd like** 14 | 15 | 16 | **Describe alternatives you've considered** 17 | 18 | 19 | **Additional context** 20 | 21 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Submit a Bug to help in improving this action 4 | title: "[BUG]" 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | 12 | 13 | **To Reproduce** 14 | 15 | 16 | **Expected behavior** 17 | 18 | 19 | **Screenshots/Actions log** 20 | 21 | 22 | **Running on:** 23 | 25 | 26 | **Additional context** 27 | 28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Karan Thanvi 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 | -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- 1 | # action.yaml 2 | name: 'Kustomize Github Action' 3 | author: 'karancode ' 4 | description: 'Github action for kustomize - manily to perform kustomize build for the k8s config yamls' 5 | branding: 6 | icon: 'anchor' 7 | color: 'blue' 8 | inputs: 9 | kustomize_version: 10 | description: 'Kustomize version' 11 | required: true 12 | default: '3.0.0' 13 | kustomize_install: 14 | description: "whether to install kustomize or use already installed" 15 | required: false 16 | default: '1' 17 | kustomize_build_dir: 18 | description: 'Directory to do kustomize build on' 19 | required: false 20 | default: '.' 21 | kustomize_comment: 22 | description: 'Comment kustomize output' 23 | required: false 24 | default: '0' 25 | kustomize_output_file: 26 | description: 'Path to file to write the kustomize build output to' 27 | required: false 28 | default: '' 29 | kustomize_build_options: 30 | description: 'Provide build options to kustomize build' 31 | required: false 32 | default: '' 33 | enable_alpha_plugins: 34 | description: 'Enable Kustomize plugins' 35 | required: false 36 | default: '0' 37 | token: 38 | description: 'GitHub Token for Authentication to Github API (mainly for limit avoidance)' 39 | required: false 40 | default: '' 41 | outputs: 42 | kustomize_build_output: 43 | description: 'Output of kustomize build' 44 | runs: 45 | using: 'docker' 46 | image: 'Dockerfile' 47 | -------------------------------------------------------------------------------- /src/kustomize_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | function kustomize_build { 4 | # gather output 5 | echo "build: info: kustomize build in directory ${kustomize_build_dir}." 6 | 7 | build_output=$(kustomize build ${enable_alpha_plugins} ${kustomize_build_options} ${kustomize_build_dir} 2>&1) 8 | 9 | build_exit_code=${?} 10 | 11 | # exit code 0 - success 12 | if [ ${build_exit_code} -eq 0 ];then 13 | build_comment_status="Success" 14 | echo "build: info: successfully executed kustomize build in ${kustomize_build_dir}." 15 | echo "${build_output}" 16 | echo 17 | fi 18 | 19 | # exit code !0 - failure 20 | if [ ${build_exit_code} -ne 0 ]; then 21 | build_comment_status="Failed" 22 | echo "build: error: failed to execute kustomize build in ${kustomize_build_dir}." 23 | echo "${build_output}" 24 | echo 25 | fi 26 | 27 | # write output to file 28 | if [ -n "${kustomize_output_file}" ]; then 29 | # create parent directory if it doesn't exist 30 | dir=$(dirname "${kustomize_output_file}") 31 | if [ ! -d "${dir}" ]; then 32 | mkdir -p "${dir}" 33 | fi 34 | echo "build: writing output to ${kustomize_output_file}" 35 | cat > "${kustomize_output_file}" < /dev/null 57 | fi 58 | 59 | echo kustomize_build_output=${build_output} >> $GITHUB_OUTPUT 60 | exit ${build_exit_code} 61 | } 62 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # kustomize-github-action 2 | Kustomize GitHub Actions allow you to execute Kustomize Build command within GitHub Actions. 3 | 4 | The output of the actions can be viewed from the Actions tab in the main repository view. If the actions are executed on a pull request event, a comment may be posted on the pull request. 5 | 6 | Kustomize GitHub Actions is a single GitHub Action that can be executed on different overlays directories depending on the content of the GitHub Actions YAML file. 7 | 8 | 9 | ## Success Criteria 10 | An exit code of `0` is considered a successful execution. 11 | 12 | ## Usage 13 | The most common usage is to run `kustomize build` on an overlays directory, where one overlays directory represents k8s configs for one environment. A comment will be posted to the pull request depending on the output of the Kustomize build command being executed. This workflow can be configured by adding the following content to the GitHub Actions workflow YAML file. 14 | ```yaml 15 | name: 'Kustomize GitHub Actions' 16 | on: 17 | - pull_request 18 | jobs: 19 | kustomize: 20 | name: 'Kustomize' 21 | runs-on: ubuntu-latest 22 | steps: 23 | - name: 'Checkout' 24 | uses: actions/checkout@master 25 | - name: 'Kustomize Build' 26 | uses: karancode/kustomize-github-action@master 27 | with: 28 | kustomize_version: '3.0.0' 29 | kustomize_build_dir: '.' 30 | kustomize_comment: true 31 | kustomize_output_file: "gitops/rendered.yaml" 32 | kustomize_build_options: "--load_restrictor none" 33 | enable_alpha_plugins: true 34 | env: 35 | GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_ACCESS_TOKEN }} 36 | ``` 37 | This was a simplified example showing the basic features of these Kustomize GitHub Action. More examples, coming soon! 38 | 39 | # Inputs 40 | 41 | Inputs configure Kustomize GitHub Actions to perform build action. 42 | 43 | * `kustomize_version` - (Required) The Kustomize version to use for `kustomize build`. 44 | * `kustomize_install` - (Optional) Whether or not to install kustomize. 45 | * `kustomize_build_dir` - (Optional) The directory to run `kustomize build` on (assumes that the directory contains a kustomization yaml file). Defaults to `.`. 46 | * `kustomize_comment` - (Optional) Whether or not to comment on GitHub pull requests. Defaults to `false`. 47 | * `kustomize_output_file` - (Optional) Path to to file to write the kustomize build output to. 48 | * `kustomize_build_options` - (Optional) Provide build options to kustomize build. 49 | * `enable_alpha_plugins` - (Optional) Enable Kustomize plugins. Defaults to `false`. 50 | 51 | ## Outputs 52 | 53 | Outputs are used to pass information to subsequent GitHub Actions steps. 54 | 55 | * `kustomize_build_output` - The Kustomize build outputs. 56 | 57 | ## Secrets 58 | 59 | Secrets are similar to inputs except that they are encrypted and only used by GitHub Actions. It's a convenient way to keep sensitive data out of the GitHub Actions workflow YAML file. 60 | 61 | * `GITHUB_ACCESS_TOKEN` - (Optional) The GitHub API token used to post comments to pull requests. Not required if the `kustomize_comment` input is set to `false`. 62 | -------------------------------------------------------------------------------- /src/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | function parse_inputs { 4 | # required inputs 5 | if [ "${INPUT_KUSTOMIZE_VERSION}" != "" ]; then 6 | kustomize_version=${INPUT_KUSTOMIZE_VERSION} 7 | else 8 | echo "Input kustomize_version cannot be empty." 9 | exit 1 10 | fi 11 | 12 | # optional inputs 13 | kustomize_build_dir="." 14 | if [ "${INPUT_KUSTOMIZE_BUILD_DIR}" != "" ] || [ "${INPUT_KUSTOMIZE_BUILD_DIR}" != "." ]; then 15 | kustomize_build_dir=${INPUT_KUSTOMIZE_BUILD_DIR} 16 | fi 17 | 18 | kustomize_comment=0 19 | if [ "${INPUT_KUSTOMIZE_COMMENT}" == "1" ] || [ "${INPUT_KUSTOMIZE_COMMENT}" == "true" ]; then 20 | kustomize_comment=1 21 | fi 22 | 23 | kustomize_install=1 24 | if [ "${INPUT_KUSTOMIZE_INSTALL}" == "0" ] || [ "${INPUT_KUSTOMIZE_INSTALL}" == "false" ]; then 25 | kustomize_install=0 26 | fi 27 | 28 | kustomize_output_file="" 29 | if [ -n "${INPUT_KUSTOMIZE_OUTPUT_FILE}" ]; then 30 | kustomize_output_file=${INPUT_KUSTOMIZE_OUTPUT_FILE} 31 | fi 32 | 33 | kustomize_build_options="" 34 | if [ -n "${INPUT_KUSTOMIZE_BUILD_OPTIONS}" ]; then 35 | kustomize_build_options=${INPUT_KUSTOMIZE_BUILD_OPTIONS} 36 | fi 37 | 38 | enable_alpha_plugins="" 39 | if [ "${INPUT_ENABLE_ALPHA_PLUGINS}" == "1" ] || [ "${INPUT_ENABLE_ALPHA_PLUGINS}" == "true" ]; then 40 | enable_alpha_plugins="--enable_alpha_plugins" 41 | fi 42 | 43 | with_token="" 44 | if [ "${INPUT_TOKEN}" != "" ]; then 45 | with_token=(-H "Authorization: token ${INPUT_TOKEN}") 46 | fi 47 | } 48 | 49 | function install_kustomize { 50 | 51 | echo "getting download url for kustomize ${kustomize_version}" 52 | 53 | for i in {1..100}; do 54 | url=$(curl --retry-all-errors --fail --retry 30 --retry-max-time 120 "${with_token[@]}" -s "https://api.github.com/repos/kubernetes-sigs/kustomize/releases?per_page=100&page=$i" | jq -r '.[].assets[] | select(.browser_download_url | test("kustomize(_|.)?(v)?'$kustomize_version'_linux_amd64")) | .browser_download_url') 55 | if [ ! -z $url ]; then 56 | break 57 | fi 58 | done 59 | 60 | if [ ! -z $url ]; then 61 | echo "Download URL found in $url" 62 | else 63 | echo "Failed to find download URL for ${kustomize_version}" 64 | exit 1 65 | fi 66 | 67 | echo "Downloading kustomize v${kustomize_version}" 68 | if [[ "${url}" =~ .tar.gz$ ]]; then 69 | curl --retry 30 --retry-max-time 120 -s -S -L ${url} | tar -xz -C /usr/bin 70 | else 71 | curl --retry 30 --retry-max-time 120 -s -S -L ${url} -o /usr/bin/kustomize 72 | fi 73 | if [ "${?}" -ne 0 ]; then 74 | echo "Failed to download kustomize v${kustomize_version}." 75 | exit 1 76 | fi 77 | echo "Successfully downloaded kustomize v${kustomize_version}." 78 | 79 | echo "Allowing execute privilege to kustomize." 80 | chmod +x /usr/bin/kustomize 81 | if [ "${?}" -ne 0 ]; then 82 | echo "Failed to update kustomize privilege." 83 | exit 1 84 | fi 85 | echo "Successfully added execute privilege to kustomize." 86 | 87 | } 88 | 89 | function main { 90 | 91 | scriptDir=$(dirname ${0}) 92 | source ${scriptDir}/kustomize_build.sh 93 | parse_inputs 94 | 95 | if [ "${kustomize_install}" == "1" ]; then 96 | install_kustomize 97 | fi 98 | 99 | kustomize_build 100 | 101 | } 102 | 103 | main "${*}" 104 | -------------------------------------------------------------------------------- /.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 | # Visual Studio 2017 auto generated files 40 | Generated\ Files/ 41 | 42 | # MSTest test Results 43 | [Tt]est[Rr]esult*/ 44 | [Bb]uild[Ll]og.* 45 | 46 | # NUnit 47 | *.VisualState.xml 48 | TestResult.xml 49 | nunit-*.xml 50 | 51 | # Build Results of an ATL Project 52 | [Dd]ebugPS/ 53 | [Rr]eleasePS/ 54 | dlldata.c 55 | 56 | # Benchmark Results 57 | BenchmarkDotNet.Artifacts/ 58 | 59 | # .NET Core 60 | project.lock.json 61 | project.fragment.lock.json 62 | artifacts/ 63 | 64 | # StyleCop 65 | StyleCopReport.xml 66 | 67 | # Files built by Visual Studio 68 | *_i.c 69 | *_p.c 70 | *_h.h 71 | *.ilk 72 | *.meta 73 | *.obj 74 | *.iobj 75 | *.pch 76 | *.pdb 77 | *.ipdb 78 | *.pgc 79 | *.pgd 80 | *.rsp 81 | *.sbr 82 | *.tlb 83 | *.tli 84 | *.tlh 85 | *.tmp 86 | *.tmp_proj 87 | *_wpftmp.csproj 88 | *.log 89 | *.vspscc 90 | *.vssscc 91 | .builds 92 | *.pidb 93 | *.svclog 94 | *.scc 95 | 96 | # Chutzpah Test files 97 | _Chutzpah* 98 | 99 | # Visual C++ cache files 100 | ipch/ 101 | *.aps 102 | *.ncb 103 | *.opendb 104 | *.opensdf 105 | *.sdf 106 | *.cachefile 107 | *.VC.db 108 | *.VC.VC.opendb 109 | 110 | # Visual Studio profiler 111 | *.psess 112 | *.vsp 113 | *.vspx 114 | *.sap 115 | 116 | # Visual Studio Trace Files 117 | *.e2e 118 | 119 | # TFS 2012 Local Workspace 120 | $tf/ 121 | 122 | # Guidance Automation Toolkit 123 | *.gpState 124 | 125 | # ReSharper is a .NET coding add-in 126 | _ReSharper*/ 127 | *.[Rr]e[Ss]harper 128 | *.DotSettings.user 129 | 130 | # TeamCity is a build add-in 131 | _TeamCity* 132 | 133 | # DotCover is a Code Coverage Tool 134 | *.dotCover 135 | 136 | # AxoCover is a Code Coverage Tool 137 | .axoCover/* 138 | !.axoCover/settings.json 139 | 140 | # Visual Studio code coverage results 141 | *.coverage 142 | *.coveragexml 143 | 144 | # NCrunch 145 | _NCrunch_* 146 | .*crunch*.local.xml 147 | nCrunchTemp_* 148 | 149 | # MightyMoose 150 | *.mm.* 151 | AutoTest.Net/ 152 | 153 | # Web workbench (sass) 154 | .sass-cache/ 155 | 156 | # Installshield output folder 157 | [Ee]xpress/ 158 | 159 | # DocProject is a documentation generator add-in 160 | DocProject/buildhelp/ 161 | DocProject/Help/*.HxT 162 | DocProject/Help/*.HxC 163 | DocProject/Help/*.hhc 164 | DocProject/Help/*.hhk 165 | DocProject/Help/*.hhp 166 | DocProject/Help/Html2 167 | DocProject/Help/html 168 | 169 | # Click-Once directory 170 | publish/ 171 | 172 | # Publish Web Output 173 | *.[Pp]ublish.xml 174 | *.azurePubxml 175 | # Note: Comment the next line if you want to checkin your web deploy settings, 176 | # but database connection strings (with potential passwords) will be unencrypted 177 | *.pubxml 178 | *.publishproj 179 | 180 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 181 | # checkin your Azure Web App publish settings, but sensitive information contained 182 | # in these scripts will be unencrypted 183 | PublishScripts/ 184 | 185 | # NuGet Packages 186 | *.nupkg 187 | # NuGet Symbol Packages 188 | *.snupkg 189 | # The packages folder can be ignored because of Package Restore 190 | **/[Pp]ackages/* 191 | # except build/, which is used as an MSBuild target. 192 | !**/[Pp]ackages/build/ 193 | # Uncomment if necessary however generally it will be regenerated when needed 194 | #!**/[Pp]ackages/repositories.config 195 | # NuGet v3's project.json files produces more ignorable files 196 | *.nuget.props 197 | *.nuget.targets 198 | 199 | # Microsoft Azure Build Output 200 | csx/ 201 | *.build.csdef 202 | 203 | # Microsoft Azure Emulator 204 | ecf/ 205 | rcf/ 206 | 207 | # Windows Store app package directories and files 208 | AppPackages/ 209 | BundleArtifacts/ 210 | Package.StoreAssociation.xml 211 | _pkginfo.txt 212 | *.appx 213 | *.appxbundle 214 | *.appxupload 215 | 216 | # Visual Studio cache files 217 | # files ending in .cache can be ignored 218 | *.[Cc]ache 219 | # but keep track of directories ending in .cache 220 | !?*.[Cc]ache/ 221 | 222 | # Others 223 | ClientBin/ 224 | ~$* 225 | *~ 226 | *.dbmdl 227 | *.dbproj.schemaview 228 | *.jfm 229 | *.pfx 230 | *.publishsettings 231 | orleans.codegen.cs 232 | 233 | # Including strong name files can present a security risk 234 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 235 | #*.snk 236 | 237 | # Since there are multiple workflows, uncomment next line to ignore bower_components 238 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 239 | #bower_components/ 240 | 241 | # RIA/Silverlight projects 242 | Generated_Code/ 243 | 244 | # Backup & report files from converting an old project file 245 | # to a newer Visual Studio version. Backup files are not needed, 246 | # because we have git ;-) 247 | _UpgradeReport_Files/ 248 | Backup*/ 249 | UpgradeLog*.XML 250 | UpgradeLog*.htm 251 | ServiceFabricBackup/ 252 | *.rptproj.bak 253 | 254 | # SQL Server files 255 | *.mdf 256 | *.ldf 257 | *.ndf 258 | 259 | # Business Intelligence projects 260 | *.rdl.data 261 | *.bim.layout 262 | *.bim_*.settings 263 | *.rptproj.rsuser 264 | *- [Bb]ackup.rdl 265 | *- [Bb]ackup ([0-9]).rdl 266 | *- [Bb]ackup ([0-9][0-9]).rdl 267 | 268 | # Microsoft Fakes 269 | FakesAssemblies/ 270 | 271 | # GhostDoc plugin setting file 272 | *.GhostDoc.xml 273 | 274 | # Node.js Tools for Visual Studio 275 | .ntvs_analysis.dat 276 | node_modules/ 277 | 278 | # Visual Studio 6 build log 279 | *.plg 280 | 281 | # Visual Studio 6 workspace options file 282 | *.opt 283 | 284 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 285 | *.vbw 286 | 287 | # Visual Studio LightSwitch build output 288 | **/*.HTMLClient/GeneratedArtifacts 289 | **/*.DesktopClient/GeneratedArtifacts 290 | **/*.DesktopClient/ModelManifest.xml 291 | **/*.Server/GeneratedArtifacts 292 | **/*.Server/ModelManifest.xml 293 | _Pvt_Extensions 294 | 295 | # Paket dependency manager 296 | .paket/paket.exe 297 | paket-files/ 298 | 299 | # FAKE - F# Make 300 | .fake/ 301 | 302 | # CodeRush personal settings 303 | .cr/personal 304 | 305 | # Python Tools for Visual Studio (PTVS) 306 | __pycache__/ 307 | *.pyc 308 | 309 | # Cake - Uncomment if you are using it 310 | # tools/** 311 | # !tools/packages.config 312 | 313 | # Tabs Studio 314 | *.tss 315 | 316 | # Telerik's JustMock configuration file 317 | *.jmconfig 318 | 319 | # BizTalk build output 320 | *.btp.cs 321 | *.btm.cs 322 | *.odx.cs 323 | *.xsd.cs 324 | 325 | # OpenCover UI analysis results 326 | OpenCover/ 327 | 328 | # Azure Stream Analytics local run output 329 | ASALocalRun/ 330 | 331 | # MSBuild Binary and Structured Log 332 | *.binlog 333 | 334 | # NVidia Nsight GPU debugger configuration file 335 | *.nvuser 336 | 337 | # MFractors (Xamarin productivity tool) working folder 338 | .mfractor/ 339 | 340 | # Local History for Visual Studio 341 | .localhistory/ 342 | 343 | # BeatPulse healthcheck temp database 344 | healthchecksdb 345 | 346 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 347 | MigrationBackup/ 348 | 349 | # Ionide (cross platform F# VS Code tools) working folder 350 | .ionide/ 351 | --------------------------------------------------------------------------------