Commit Graph
259 Commits
Author SHA1 Message Date
Brian DouglasandGitHub 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 DouglasandGitHub c9e02960b8 Merge branch 'main' into master 2021-12-04 15:12:29 -08:00
Brian DouglasandGitHub 7936b8386d Merge pull request #3121 from Polda18/master
Update VisualStudio.gitignore
2021-12-04 12:08:42 -08:00
a24694b87d Update VisualStudio.gitignore
Co-authored-by: Jaan Jahilo <jaanjahilo@outlook.com>
2021-12-04 12:06:56 -08:00
Christer van der MeerenandGitHub 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 SherberandGitHub dd412a73a7 Remove nuget.config from VisualStudio.gitignore 2021-09-08 22:24:42 -04:00
ParsaandGitHub 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
Martin WoodwardandGitHub 888439ee89 Merge pull request #3686 from tustin2121/tustin2121-vs-changes 2021-05-08 14:28:36 +01:00
Martin WoodwardandGitHub d21a9e8a68 Merge pull request #3722 from timheuer/master
Adding VS Code to global VS family
2021-05-07 19:07:52 +01:00
Martin WoodwardandGitHub 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
ParsaandGitHub 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
tustin2121andGitHub fd40ca24de Add .tlog to the Visual Studio template 2021-03-26 12:32:11 -04:00
Justin GregoryandGitHub 6eff882467 Fix false positives on Coverage*.cs files (#3454)
I added this .gitignore to a project that included a file named CoverageSearchModel.cs, and the file was wrongly ignored.  This change fixes the incorrect use of the range operator on the Coverlet rules.
2020-07-03 17:15:33 -03:00
Daniel ChalmersandGitHub 2a4de265d3 Add FodyWeavers.xsd to VisualStudio.gitignore (#3380) 2020-04-20 21:27:53 -03:00
Jeffrey WaltonandGitHub 811be05b83 Add Win32/ to gitginore list (#3308)
Visual Studio .Net used Win32/ as one of the default output directories for C and C++ projects. Later, when 64-bit support was added to the toolchain (circa 2005), x64/ was used. The Gitignore files include x64/, but not Win32/. The commit adds support for both Win32/ and x64/.
2020-03-12 08:21:54 -03:00
Patrick RocheandGitHub 0af689b988 [VisualStudio] Add rule for ScaffoldingReadMe.txt (#3328) 2020-03-11 18:06:43 -03:00
Łukasz KurzyniecandBrendan Forster b4551f2e98 added Coverlet result files as a Code Coverage Tool (#3252) 2019-12-16 09:16:35 -04:00
MatthewandBrendan Forster cedf2d1e99 JustCode has been discontinued as the features it provided are now included in Visual Studio 2017 and newer. (#3227) 2019-11-07 08:22:32 -04:00
Paul SmithandBrendan Forster 26c3d8407c [VisualStudio] add Logs folder (#3143)
* Adding ignore rule for temporary office files.

* Adding Logs folder to ignore file.

* Revert "Adding ignore rule for temporary office files."

This reverts commit f6f191b128.
2019-09-20 12:58:22 -03:00
steveh-ivendiandBrendan Forster f900e7e0dd Ignore the .ionide working folder (#3108)
If you have the [Ionide](http://ionide.io/) tools installed you will get an `.ionide` directory created in each directory that you open with VS Code, regardless of whether or not you are using F#.
2019-07-21 10:45:57 -03:00
Marek PoláčekandGitHub ce4e88b4a6 Update VisualStudio.gitignore
Typo
2019-07-16 09:06:11 +02:00
Marek PoláčekandGitHub e285e4bb06 Update VisualStudio.gitignore
Visual Studio 6.0 files
2019-07-16 08:39:20 +02:00
Dariusz WoźniakandBrendan Forster d82e9e96ff NUnit - reorganize (#2960) 2019-05-12 10:00:26 -03:00
Alvaro Enrique RuanoandBrendan Forster 8f83007b29 Update VisualStudio.gitignore to add a safer rule for rdl backups (#3047) 2019-05-02 12:37:20 -03:00
Alessio FranceschelliandBrendan Forster 65bb94ddc1 Update VisualStudio.gitignore to ignore NuGet Symbol Packages (#3041)
This is to ignore the new Nuget Symbol Packages, which are now the recommended approach for debug symbols of public NuGet packages.
https://docs.microsoft.com/en-us/nuget/create-packages/symbol-packages-snupkg
2019-04-25 15:52:35 -03:00
Jimmy LewisandBrendan Forster 7f765e3f2a Remove wwwroot/lib exclusion for ASP.NET Core (#3009)
ASP.NET Core projects no longer use Bower by default (since Bower is now deprecated), and instead create static files in the wwwroot/lib path.  This path is can also be used by convention for ASP.NET Core developers, and since it's no longer populated by Bower, it is unituitive to be excluded by default.

This change removes the lines added by #2307.

**Reasons for making this change:**

VS default flow is now broken by excluding files required to run an ASP.NET Core project.

**Links to documentation supporting these rule changes:**

The changes to the ASP.NET Core templates was tracked by https://github.com/aspnet/templating/issues/48.
2019-03-20 19:06:32 -03:00
NickandBrendan Forster bbd09f3585 Add more Windows Store app package types (#2995)
Visual Studio can also generate .appxbundle and .appxupload files for Windows Store apps.
See: https://docs.microsoft.com/en-us/windows/uwp/packaging/packaging-uwp-apps#types-of-app-packages
2019-03-14 08:58:52 -03:00
José Fabio Martinez GonzalezandBrendan Forster b960d3c704 Update VisualStudio.gitignore file (#2975)
* Update VisualStudio.gitignore file
2019-03-11 11:57:00 -03:00
Coskun SunaliandBrendan Forster 96baa6309f Remove Rider (idea) ignore statements from VS (#2991)
Rider has its own ignore file, so does Visual Studio. The ignore statements for Rider (idea) IDE should be removed from Visual Studio .gitignore file template.
2019-03-11 10:07:27 -03:00
Terje Sandstrom 8dff1bed1a Added backup folder for Package Reference Convert tool in VS 2017 2019-02-13 22:23:42 +01:00
Jason DavisandGitHub d72f17f13e Update VisualStudio.gitignore
Ignore backup files from editing reports
2019-02-07 16:20:14 -07:00
Kexy BiscuitandGitHub 4e9a58b9af Remove trailing whitespace added last commit. 2019-01-29 23:09:28 +08:00
Brendan ForsterandGitHub d1baec1bf1 Merge pull request #2907 from HassanHashemi/patch-1
[Visual studio] Ignore health check temp database
2018-12-19 14:25:48 -04:00
Hassan HashemiandGitHub 98a3e85f01 cleanup 2018-12-19 08:56:20 -08:00
Hassan HashemiandGitHub 5bbde8f927 Update the rule 2018-12-19 09:52:27 +03:30
Hassan HashemiandGitHub db53e8cfc9 Changed the rule to healthchecksdb 2018-12-19 09:52:00 +03:30
Hassan HashemiandGitHub 6cc207982e Add * wildcard 2018-12-18 11:27:45 -08:00
Hassan HashemiandGitHub 5abe1395f1 Remove empty line 2018-12-16 09:52:34 -08:00
Hassan HashemiandGitHub 2861abc28c Add BeatPulse specific section 2018-12-16 09:51:36 -08:00
Hassan HashemiandGitHub b2310e0ddc Ignore health check temp database
Ignore liveness db which belongs to:
https://github.com/Xabaril/BeatPulse
2018-12-13 06:53:53 -08:00
Wouter de Vries 38b9fdf4fb Only unignore directories that have at least a character ending with .cache 2018-12-06 10:17:16 +01:00
Brendan ForsterandGitHub e313e296c1 Merge pull request #2307 from marcrocny/marcrocny-patch-1
[VisualStudio] ASP.NET Core - bower - default config
2018-11-23 16:15:49 -04:00
Chris Gunn b3d1e72efb Add ARM and ARM64 to Visual Studio's ignore file. 2018-11-02 14:39:00 -07:00
Kevin R. RaneyandGitHub 3f0a607c11 Update VisualStudio.gitignore
This will ignore SQL Server Reporting Services user files
2018-09-27 11:27:56 -06:00
AndrewandGitHub b0b1b52543 No need to fully exclude CodeRush settings
Currently, CodeRush provides the capability to store team settings and images used in Rich Comments and they should be shared among all team members. I have corrected the gitignore file to exclude only personal settings.
2018-09-18 10:10:17 +03:00
Jeff CyrandGitHub a89e5e1464 Added *_wpftmp.csproj ignore 2018-09-14 16:10:52 -04:00
Matthias Schäfer a3b7954a02 Fixing MIDL header file pattern for Visual Studio
_i.h given in 799ee6b79e1d32f49ded6683b5364017fd4ee0a5#gitext://gotocommit/799ee6b79e1d32f49ded6683b5364017fd4ee0a5 is wrong
2018-08-03 12:52:19 +02:00