Benjamin Michaelis
6d24007ad2
Update VisualStudio.gitignore to include all VS Code files
2025-10-01 14:23:00 -07:00
Benjamin Michaelis
2b90570de6
feat: Add mcp.json to Visual Studio gitignore exceptions
...
As mcp's are becoming more common, sharing a workspace configuration of mcp servers is becoming more and more common with the mcp.json file. (https://code.visualstudio.com/docs/copilot/customization/mcp-servers#_add-an-mcp-server )
Adding this file as an exclusion to the default template so that it can be utilized by the editors and shared via source control.
This file can also be picked up by Visual Studio as seen [here](https://learn.microsoft.com/visualstudio/ide/mcp-servers?view=vs-2022&WT.mc_id=8B97120A00B57354#file-locations-for-automatic-discovery-of-mcp-configuration )
2025-09-23 11:14:46 -07:00
Yang
de16f7faa2
x86 and x64 only ignore in debug dir
2025-07-14 13:43:50 -07:00
gh658804
105082db06
Update VisualStudio.gitignore - remove *.vbp extension
...
Remove *.vbp extension. Such files are the main Visual Basic 6 Project Files and should not be ignored. It's like ignoring .csproj or .vbproj files in .NET projects.
2025-07-02 22:44:18 +03:00
Daniel Johnson
1a3a16e998
Merge pull request #4340 from timheuer/master
...
Update VisualStudio.gitignore for ENV files
2025-06-27 13:13:14 -07:00
Daniel Johnson
26007d137b
Merge pull request #4508 from Lamparter/cake
...
Update Cake comment line to match other comment lines
2025-06-13 15:02:07 -07:00
Daniel Johnson
30715cedf8
Merge pull request #4153 from Jaxelr/patch-1
...
Add MSBuild_Logs directory to VisualStudio.gitignore
2025-06-13 14:26:42 -07:00
Daniel Johnson
818c9dc592
Merge pull request #4044 from Bdeering1/patch-1
...
[VisualStudio.gitignore] Update VS Code ignores to match file in global
2025-06-13 14:16:44 -07:00
Daniel Johnson
7bbd186eba
Merge pull request #3609 from xperiandri/patch-1
...
Fixed editor specific folder exclusion for subfolders
2025-06-13 14:12:13 -07:00
Daniel Johnson
35ada6b74a
Merge pull request #4040 from kkostrzewa-coupa/add-trx
...
Add *.trx to ignored files
2025-06-13 13:35:55 -07:00
Martin Woodward
2b1d7aec2c
Merge pull request #3736 from aruanoguate/handle_dot_refresh_files
...
Handle .dll.refresh
2025-06-13 19:42:41 +01:00
Tim Hunter
b224b3e854
Merge pull request #4100 from lkurzyniec/feature/ApprovalTests-result-files
...
Added Approval Tests result files
2025-06-11 09:26:57 -07:00
Devin Dooley
af8cbe919e
Merge pull request #4210 from nagilson/patch-1
2025-06-10 13:17:43 -07:00
Noah Gilson
1d84c6b57c
Update VisualStudio.gitignore
2025-06-10 13:09:42 -07:00
Noah Gilson
ac81151c33
Update PR so it doesnt get deleted
2025-06-10 13:09:13 -07:00
Tim Hunter
9a656787d6
Merge pull request #3600 from tbeu/patch-1
...
Also ignore *.idb (to match C.gitignore)
2025-06-02 11:53:56 -07:00
Daniel Johnson
094d21a473
Merge pull request #3540 from jumattos/vs-add-out
...
VisualStudio: add "out" folder to build results
2025-05-29 12:17:35 -07:00
Daniel Johnson
6136f2a8a2
Merge pull request #4584 from janisozaur/patch-1
...
Add ARM64EC support to VisualStudio.gitignore
2025-05-23 14:02:17 -07:00
Guilherme Arcoverde
10164d7048
Add .aws-sam/ to ignore AWS SAM build artifacts
2025-05-02 12:51:41 -03:00
Daniel Johnson
63f57203de
Merge pull request #4614 from fuzzybair/ncrunch-update
...
Updated NCrunch cache path for v4.16+
2025-04-25 13:10:18 -07:00
Michał Janiszewski
aa8449f5bf
Add ARM64EC support to VisualStudio.gitignore
2025-02-04 12:48:36 +01:00
Lamparter
9f181e93ce
🙈 Update Cake comment line to match other comment lines
2024-09-12 17:55:04 +01:00
Matt Kotsenas
71eddf97b6
Update VisualStudio.gitignore
...
`Directory.Build.rsp` is a [documented file][1] that allows setting default arguments to command line builds. However, our .gitignore template ignores _all_ `*.rsp` files. which causes confusion:
1. Devs write an .rsp file and if they aren't being attentive forget to commit it
2. Adding it to git requires `git add --force`, which some devs mistake for a destructive or not-recommended action
Thus, explicitly allow the `Directory.Build.rsp` file.
[1]: https://learn.microsoft.com/en-us/visualstudio/msbuild/msbuild-response-files?view=vs-2022#directorybuildrsp
2024-08-14 17:27:36 -07:00
Kent Bair
63e339f19f
Updated NCrunch cache path for v4.16+
2024-08-02 15:53:33 -06:00
Tim Heuer
eb5c17212b
Update VisualStudio.gitignore for ENV files
...
Adding .env exclusion
2023-08-14 09:14:18 -07:00
Kevin Kostrzewa
6743515cd3
Moved *.trx to MSTest section
2023-03-01 19:35:33 -05:00
Noah Gilson
3b37c6d06c
Remove JetBrains IDE Files from VS Ignore List
...
https://github.com/dotnet/sdk/issues/29224
2022-12-13 15:57:24 -08:00
Jaxel Rojas
9c1792744c
Add MSBuild_Logs/ to VisualStudio.gitignore
...
The MsBuild team added a switch to the Visual Studio engine that generates a debugging information under the directory MsBuild_Logs/ that shouldn't be in source control systems. Here's the [original PR](cdb5077c45 ) from the msbuild team.
Here is the documentation from the msbuild team explaining the feature that [generates the path](https://github.com/dotnet/msbuild/blob/main/documentation/wiki/Building-Testing-and-Debugging-on-Full-Framework-MSBuild.md#logs )
Heres' a similar PR for the dotnet [runtime](https://github.com/dotnet/runtime/pull/59323 )
2022-09-17 09:20:22 -04:00
Łukasz Kurzyniec
ae510dd9f4
added Approval Tests result files
2022-07-02 17:16:16 +02:00
Bryn Deering
9fffcae51a
Update VS Code ignores to match file in global
...
Updated the VS Code section of VisualStudio.gitignore to match the Global/VisualStudioCode.gitignore file.
2022-04-20 23:22:50 -04:00
Kevin Kostrzewa
64eaff4190
Update comment for ignoring *.trx files
2022-04-15 08:54:49 -04:00
Kevin Kostrzewa
8d481622d5
Ignore *.trx files
2022-04-15 08:53:44 -04:00
n0099
491040e88a
[VisualStudio.gitignore] remove a trailing space
2022-01-26 23:58:07 +08:00
Brian Douglas
a419663ea9
Merge pull request #3845 from kjchome/vshistory
...
Add Visual Studio History directories (`.vshistory`) to `VisualStudio.gitignore`
2021-12-10 16:05:25 -08:00
Wiblz
093b0fbce9
Replace references of this repo's "master" branch
...
with "main".
2021-12-06 23:39:54 +01:00
Brian Douglas
c9e02960b8
Merge branch 'main' into master
2021-12-04 15:12:29 -08:00
Brian Douglas
7936b8386d
Merge pull request #3121 from Polda18/master
...
Update VisualStudio.gitignore
2021-12-04 12:08:42 -08:00
Brian Douglas
a24694b87d
Update VisualStudio.gitignore
...
Co-authored-by: Jaan Jahilo <jaanjahilo@outlook.com>
2021-12-04 12:06:56 -08:00
Christer van der Meeren
8b1f9b4196
Remove .idea folder from VisualStudio
...
Conflicts with JetBrains.gitignore. Some files in this directory should be checked in.
Not sure about *.sln.iml, so I'm leaving that. The JetBrains.gitignore file contains commented-out IML stuff with instructions on when to uncomment.
2021-11-24 09:48:11 +01:00
Ken Cross
8d86f889a2
Add Visual Studio History (VSHistory) files
2021-10-03 08:26:51 -04:00
Aaron Sherber
dd412a73a7
Remove nuget.config from VisualStudio.gitignore
2021-09-08 22:24:42 -04:00
Parsa
1503b47796
Revert #3706
...
Revert changes in #3706 due to the inconveniency which developers reported by commenting the added line.
2021-06-12 14:49:35 +04:30
Alvaro Enrique Ruano
d5962b38af
Making .refresh exclusion optional
2021-05-30 11:17:00 -06:00
Alvaro Enrique Ruano
ac73d272df
Handle .dll.refresh
2021-05-14 22:51:17 -06:00
Martin Woodward
888439ee89
Merge pull request #3686 from tustin2121/tustin2121-vs-changes
2021-05-08 14:28:36 +01:00
Martin Woodward
d21a9e8a68
Merge pull request #3722 from timheuer/master
...
Adding VS Code to global VS family
2021-05-07 19:07:52 +01:00
Martin Woodward
b3ece8cef6
Add newline.
2021-05-07 19:07:24 +01:00
Tim Heuer
5db7eeab30
Adding VS Code to global VS family
2021-05-07 09:47:16 -07:00
Parsa
5f1ce29425
Add nuget.config file
...
Add nuget.config file because it contains secret data and should be kept localy
2021-04-21 18:45:44 +04:30
tustin2121
fd40ca24de
Add .tlog to the Visual Studio template
2021-03-26 12:32:11 -04:00