Тёмный
No video :(

Moving from GitHub to Azure DevOps - A TimCo Retail Manager Video 

IAmTimCorey
Подписаться 419 тыс.
Просмотров 15 тыс.
50% 1

In this video, we are going to be moving our source code over to Azure DevOps from GitHub. This is not a required step to use Azure DevOps, it is just that, in our case, it will be easier if everything is in the same spot. We are also going to be tackling an outstanding code issue and seeing how we can attach a work item to a commit message.
** TimCo source code now at: www.iamtimcore...
Full Courses: www.iamtimcore...
Mailing List: signup.iamtimc...
One-off tutorials are awesome but they aren't the only thing you should be doing to learn C#. Another vital part of learning is learning how to put it all together. This interactive course is all about putting the pieces together. You can watch each video on its own or you can watch them in order and see a bigger picture. The choice is yours.
This course focuses on real-world development. As such, we are simulating that we work for TimCo Enterprise Solutions on a brand new product, the TimCo Retail Manager. Just like in the real world, we are starting out with one set of requirements but know that over time they will change.

Опубликовано:

 

29 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 57   
@karlism.5604
@karlism.5604 Год назад
For everyone doing this via Visual Studio 2022 or newer: looks like option to connect to Azure DevOps project directly from VS has been removed. There also are no indirect workarounds AFAIK. One can trigger automatic updates in Azure DevOps using the AB#{ID} commit message format, where {ID} is an issue number. For example, "Fixes AB#1" would move your issue #1 to Done in Boards.
@quentincouissinier8533
@quentincouissinier8533 3 года назад
Not to be redundant, but please accept my deepest thanks. This is quality content.
@IAmTimCorey
@IAmTimCorey 3 года назад
You are most welcome. Thanks for watching.
@MrBoogerblood
@MrBoogerblood 3 года назад
I haven't been able to continue this for a while because work picked up but I have a little lul so I started again today. I don't know what VS update did it but I can't find the option to link work items to commits as easily as it's done in this video. After some professional googling though I found that you can just put AB#ID syntax in your commit messages and azure will pick up on it. You can also precede that with "fix", "fixes", or "fixed" to mark it as done. So in the example from this video, you would put something like "Added key variable to tokenContoller, fixes AB#14". It takes a minute to go through but it does work. Thought I'd mention that in case anyone is starting later or is further behind than I am.
@miriadetasy
@miriadetasy 3 года назад
Im having this problem, thanks
@henriksndergaard2699
@henriksndergaard2699 3 года назад
Thank you very much! This whole project have been a bit hard to follow due to changes in VS, with a dedicated "Git Changes" explorer and all.
@SuperDre74
@SuperDre74 4 года назад
Great video again.First I thought, why not use the 'Import' function of DevOps to move it from GitHub to DevOps, but then I realized you also have to disconnect/connect it to the correct server on your local machine, so it makes more sense to do it the way you did (except in your case it seems to go wrong as you had to clone it again, didn't have that problem). Now I'll be looking into converting our VisualSourceSafe2005 over to github/devops if the plugin rubberduck will work correctly for VB6... (yes, the horror, we still have a legacy application developed in VB6 (but also a .NET based cloud version)).
@IAmTimCorey
@IAmTimCorey 4 года назад
Sounds like a big job (but worth it).
@maurotorres5675
@maurotorres5675 Год назад
Just a tip at 17:47 where he had to clone to a different directory. I just closed Visual Studio, double clicked the .sln file in file explorer, which opened up VS again, and reconnected to DevOps, and all was good. It didn't ask me to clone the repo anymore.
@IAmTimCorey
@IAmTimCorey Год назад
Thanks for sharing.
@vedprakash-zz6hb
@vedprakash-zz6hb 4 года назад
Worth bookmarking. Very helpful course.
@IAmTimCorey
@IAmTimCorey 4 года назад
I'm glad.
@OmegaStorm
@OmegaStorm 3 года назад
Rather than completely abandoning GitHub, I added it back in Git Bash after getting set up on Azure DevOps as a second push URL, that way it acts as a backup of sorts to the DevOps repository. Visual Studio itself seems to lack the ability to set multiple push URLs for a single remote, which is why I had to do it in Bash. Visual Studio will only show the last push URL listed in your Git config file in the Git remote settings, and it breaks Visual Studio's ability to update the remote settings properly, but pushing still works correctly inside Visual Studio. (This is with VS2019 v16.8.2)
@IAmTimCorey
@IAmTimCorey 3 года назад
I believe the new options for git in VS allows for multiple upstreams.
@sueburt1757
@sueburt1757 4 года назад
I found that restarting Visual Studio picked up the new Azure DevOps repo - I didn't need to clone it again. In case that helps anyone.
@IAmTimCorey
@IAmTimCorey 4 года назад
Thanks for sharing!
@SuperDre74
@SuperDre74 4 года назад
Ahh, that's probably why I also didn't have the problem, I was also 'smart enough' to do the whole conversion with Visual Studio closed ;) Never do things like that with the IDE open.
@StudentCompanion
@StudentCompanion 4 года назад
Hi Tim, what's the best practice in industry when you have a small team working on the same software project or even one employee and you would like to protect your source code in case one team member could quit and have the full software source code that could be used to compete with you? Do you set people to work and have only access to a certain portion of the software so that they don't have the full picture of the software and all the code? Like one team working on database only, another on a certain UI? And only few or one trusted person integrate all the pieces together before build? How is it done in industry? Or is it impossible as all team members must work together understanding what others are doing for efficiency and rely only on Non-Disclosure Agreement ?
@IAmTimCorey
@IAmTimCorey 4 года назад
You can't really protect yourself from your own people. Step one is to hire people you trust. Step two is to treat them well. Beyond this, make good backups. You don't need to give developers access to the production systems and you should change all passwords after they leave (even if they leave on the best of terms).
@StudentCompanion
@StudentCompanion 4 года назад
@@IAmTimCorey Thanks
@SuperDre74
@SuperDre74 4 года назад
"in case one team member could quit and have the full software source code that could be used to compete with you?" Uhm, that's actually a reason to sue, so don't be too scared about that happening, as it will be easy to prove the person stole the sourcecode. Also the person could have copied the code long before he/she quit. In a small business it's best if most developers know about the other developers work in case they have to take it over (people can quit/die/whatever). It's actually best NOT to have all knowledge of the working with only one person.
@roadtripping
@roadtripping 11 месяцев назад
I don't remember when there were two branches created. I thought there was only the master branch? When was the Authentication branch created - does anyone know the video number? I must have missed it.
@skanyer
@skanyer 4 года назад
18:29 I'm so confused here. You already had TimCoRetailManager on your machine. You were just looking at it at 7:49. Looks like you now have it in the Demos and the Repos folder.
@IAmTimCorey
@IAmTimCorey 4 года назад
Yeah, I'm not sure why VS didn't recognize the open repository as the correct repo. My guess is that it was a bug. The cool thing is that it doesn't matter. Since I had pushed everything up to the repo, I could have deleted the files and re-pulled them without an issue. In this case, I left the files there but cloned the repo to a new folder. No real harm done, just annoying.
@defiledgamingnl2284
@defiledgamingnl2284 2 года назад
Any good alternatives for devops for the SQL database?
@IAmTimCorey
@IAmTimCorey 2 года назад
There are other SQL DevOps solutions out there, but they are mostly paid solutions. SSDT is probably your best bet if you don't want to spend money.
@Arasaik
@Arasaik Год назад
Hi Tim, what a great video! I did what you did in this video but i can't see changes! I think it's because of my vs (community 2022). How can i have Changes?
@IAmTimCorey
@IAmTimCorey Год назад
I don't believe it is because of Visual Studio. I don't know why you aren't seeing changes, though. My guess is that it is something else. I believe at this point we are still on .NET Framework. If that's the case, check that Caliburn Micro is version 3.x and not 4.x.
@markcain2116
@markcain2116 4 года назад
Started getting this error: "The debug executable 'c:\..\..\TimCoRetailManager\TRMDesktopUI\bin\Debug etcoreapp3.0\TRMDesktopUI.exe' specified in the 'TRMDesktopUI' debug profile does not exist." . I worked at the end of the last installment of your series. Not sure why it is throwing this UI error. The API still works...
@IAmTimCorey
@IAmTimCorey 4 года назад
Maybe try doing a rebuild to clear out the contents of the bin folder and try again.
@markcain2116
@markcain2116 4 года назад
@@IAmTimCorey I already did that...no joy!
@RowlandOConnor
@RowlandOConnor 4 года назад
Azure Devops = vendor lock in. I prefer generic repository + CI/CD which can be lifted and shifted easily if, for example, Azure do large price increases (which does happen).
@IAmTimCorey
@IAmTimCorey 4 года назад
I'm not seeing what you are seeing here. Your repo can go anywhere at any time. There is no lock-in. As I demonstrated in this video, you can move from GitHub to Azure DevOps in a matter of minutes (really less than that if you aren't on camera explaining things). You could do the reverse in the same amount of time or you could go somewhere else entirely. As for your CI/CD pipeline, that's always going to be "locked in" to a vendor unless you are scripting your own process (which I would recommend against). Even if you decided you didn't like "corporate" solutions like GitHub Actions, Azure DevOps Pipelines, or Octopus Deploy, choosing an open source platform like Jenkins still locks you in. If, down the road, Jenkins starts being a problem for you, you have to recreate your build process somewhere else. I've done that exact process. While it isn't as quick as moving repos, it isn't a big deal. You already know what steps need to be taken and most of that is scripted so switching over just means learning the new interface and then setting up what you already have. As for large Azure pricing increases, I've never seen that (and I have the following services running each month: CosmosDB, Azure SQL, Web Apps, Docker instances, Azure Service Bus, Azure Functions, Azure Storage, and a lot more). Azure DevOps, while Azure is in the name, really is a separate entity. It has been free for up to five users for years (going back to when it was called Visual Studio Team Services).
@RowlandOConnor
@RowlandOConnor 4 года назад
@@IAmTimCorey Ok. Perhaps I'm (unlucky) to have seen 2 big price rises in Azure in 2016: one of around 20 percent, the other at around 12. To be honest, Azure pricing in general is expensive compared to other hosts (Digital Ocean and Linode as examples). I've been around MS devops since it was Team Foundation Services so do have some familiarity. Current pricing wise, MS devops is around 40 percent pricier than our other solution (Bitbucket Pipelines) for a 10 user license model. You mention migration in/out. Question is why would I move to Devops when there are more cost effective options with no vendor lock in and similar functionality? Horses for courses, but I've learned the hard way not to put all eggs in one cloud providers basket. P.S. not a fan of active directory dependency for devops too- more lock in!
@IAmTimCorey
@IAmTimCorey 4 года назад
Well, I'm never an advocate for a one-size-fits-all solution. You do what works best for you so please don't think I'm trying to convince you away from what works for you. For getting started, Azure DevOps is a free, though, as is Azure Web Apps (up to 10) and SQL databases will cost as little as $5/month. So in this solution, we will have a full CI/CD pipeline, Azure Boards (similar to Jira but included in Azure DevOps), two Azure SQL databases, and an Azure Web App and our total cost will be $10/month (this is for our API - our desktop app will require storage, which will be a few pennies more a month). If we switched our databases to MongoDB Atlas and hosted them on Azure, that would eliminate $10/month in expenses. As for the larger scale like you are talking about, that is probably a better solution as long as you don't want to use Jira (since that will triple your costs). I'm still not sure I understand your definition of "vendor lock-in". You realize Bitbucket is a vendor, right? They are a much smaller company with a lot less resources compared to Microsoft. If we are banking on one organization supporting a product for longer, I'm not thinking BitBucket is the way to go. Again, I don't think that will happen and I'm not encouraging you to go with Microsoft. I'm just confused as to what a "vendor" means. Either company can close down the platform or raise prices. If it happens to you, you would have to move platforms. Not ideal but not the end of the world. Same for me. At the end of the day there are two strategies - either you put all your eggs in one basket or you diversify each part. The latter sounds better because we think of it in terms of the stock market. If one stock dips, the others cover the loss. But that isn't really true here. It is more similar to the parts of an airplane. You might think that getting your engines from one manufacturer, your wings from another and your tail from a third diversifies you but if your engines fail in flight, it doesn't really matter that the wings are still working, the plane is going down. If you host your code on GitHub, use BitBucket for your CI/CD, Azure for your SQL, and AWS for your web app, it doesn't matter which one of these goes down, you have a major problem. Even worse, because you used for vendors instead of one to avoid "lock-in", you are actually hoping that four companies will remain solvent and continue to support their products without rate increases. In some ways, you have actually increased your risks 400%.
@RowlandOConnor
@RowlandOConnor 4 года назад
​@@IAmTimCorey You make some valid points and provide some food for thought - thank you. As for "vendor lock in", yes I do appreciate that BitBucket is a vendor and that, by using PipeLines, this is also a type of lock-in. However, there are a few meaningful differences / advantages when comparing to Azure DevOps: 1. BitBucket Pipelines is a layer on top of the repository services (Git). Should one get tired of the CI/CD services of Pipelines for whatever reason, these could easily be picked up by something else (e.g. Jenkins self hosted) using web hooks. This is possible because of the standard Git system exposed by BitBucket (and GitHub for that matter). Can DevOps claim the same isolation/compatibility or are there (as I would suspect) some barriers (e.g. AD authentication) that prevent being able to use 3rd party/open source CI/CD systems? There are a few other platforms built with similar architectures (GitLab and OctoDeploy to mention a couple) that have extensibility, flexibility and standards compatibility built in out of the box (unlike DevOps which is proprietary and solely focused on DevOps to Azure pipeline). 2. Using BitBucket (or many other CI/CD pipelines), it is possible to easily target multiple / different target publishing infrastructures and data centers (including but not limited to Azure). This gives complete flexibility and the ability to consider cloud providers are mere commodity providers. To be fair and open, I should mention that in the last 12 months, my company had a cost review which started at our heavy reliance on Azure as sole provider for our cloud based product. This review resulted in a migration away from Azure for most of our compute based resources whist retaining storage (Tables, Blobs, Queues, SQL) in Azure. Today, with most of the compute moved away from Azure, we operate net cost savings of > $1,500 / month whilst maintaining operating integrity and also getting more performance out of better VMs in other data centers. As an example of what I'm talking about regarding proprietary vendor lock-in (and its effects on budget) and one of the problems with the Azure "convenience" platforms (of which I include DevOps as one), take a look at the difference in price of App Service Plan P3V2 as follows (prices valid as of today): * P3V2 (Windows) @ $0.80 / Hr * P3V2 (Linux) @ $0.442 / Hr This shows that, for essentially the same VM (App Service Plans are essentially VMs), Azure is charging almost a 100% uplift for the privilege of running Windows on the App Service Plan. It's this type of messaging (gouging) coming out from Azure that caused us to migrate most of applications away from Azure. I do understand that your tutorial is pitched at the free / introductory tier and therefore costs should be low. However, for anyone considering using Azure in any scale situations, personally I would suggest keeping options open as far as possible about what to put where. Having everything in Azure can (as in my case) be a costly mistake. On the "lock-in" question, you are right in that there is always lock-in somewhere in the chain (even with Open Source solutions). The interesting question (and art) is deciding where to put the lock-in and whom to trust with your overall solution lock-ins. From a cost, reliability and performance perspective my experience has guided towards a more diverse supplier base rather than just Azure.
@IAmTimCorey
@IAmTimCorey 4 года назад
Two quick things: Azure DevOps can deploy to AWS or any other platform. It can also build non-MS stuff. It really is vendor agnostic. Also, the cost difference for Windows hosting is the Windows license.
@shawnsmith8975
@shawnsmith8975 3 года назад
I have a Blazor Server app in my Azure Devops Git repo works fine, however everytime I do a build I get a bunch of changes in my changes window, even though all I did was a rebuild of the solution, do you know of a fix for this?
@IAmTimCorey
@IAmTimCorey 3 года назад
It sounds like you have things set up to change the spacing (this is a git configuration issue). Check the changes and see if it is the line breaks that are the changes. If so, change your git settings.
@vartikagupta8816
@vartikagupta8816 3 года назад
I am unable to see changes and branches in Team Explorer. Is there a setting that i have missed?
@lloydpratt7258
@lloydpratt7258 2 года назад
Did you find the answer for this? I am having the same issue
@serghus6317
@serghus6317 4 года назад
Hi Tim, how did you set "Wrap parameters" in Quick Actions and Refactorings?
@IAmTimCorey
@IAmTimCorey 4 года назад
That is an included feature of Visual Studio 2019.
@girornsveinsson7970
@girornsveinsson7970 4 года назад
Thanks for the video. I cannot change the work item to be completed from VS as I get the message: "Custom rules are preventing the Issue from being saved. Open the work item in the web to make your updates." I tried to google a solution but found nothing. Do you have any idea how to change this?
@IAmTimCorey
@IAmTimCorey 4 года назад
Weird. I've never seen that. A custom rule sounds like it is something specific to your account or PC.
@johnsinclair1447
@johnsinclair1447 4 года назад
Does anyone else get an error on Checkout? My ConfigHelper in the API busts reading the "taxRate" from AppSettings in the UI App.config -- "rateText" in ConfigHelper returns a null. The API is not reading the UI App.config properly.
@IAmTimCorey
@IAmTimCorey 4 года назад
It sounds like a naming issue. When you get a null value back, it usually means that it looked for the value but did not find it. Maybe check that the name is spelled correctly compared to the code that is looking for the name.
@johnsinclair1447
@johnsinclair1447 4 года назад
@@IAmTimCorey Yes, I had checked naming, but nothing wrong there. The GetTaxRate() method in ConfigHelper is not reading the "taxRate" in the appsettings.json. But don't worry about it -- it may solve itself when we move from config to the API -- it's on your TODO list.
@hamidrezaashkiyan
@hamidrezaashkiyan 4 года назад
When do you add CI/CD?
@IAmTimCorey
@IAmTimCorey 4 года назад
First I like to manually deploy my items so that I know they work. Then I hook up CI/CD. That way if there is a problem, I know the problem is with the build or deploy process, not with the server configuration. So, we will first manually deploy the API, then the SQL databases, then set up CI, then CD for the API. Then we will address the desktop app side of things.
@hamidrezaashkiyan
@hamidrezaashkiyan 4 года назад
@@IAmTimCorey Thats awesome. Cant wait to see it.
@bsuthar1109
@bsuthar1109 3 года назад
Hi Tim, My repository showing me address like with DevOps icon myid-hotmail.visualstudio.com/myproject/_git/myproject Is there any major difference my current vs DevOps.
@minettembouh1598
@minettembouh1598 3 года назад
Hi Tim, I just stated following these series with lesson 40. My application cannot run. I am receiving the message below. What adjustments do I need for my specific environment ? System.UnauthorizedAccessException HResult=0x80070005 Message=Access to the path 'C:\Users\Minette\Desktop\Learning\IamTimCorey_03-21-21\LearningDevOpsProject\TRMApi\appsettings.json' is denied. Source=System.Private.CoreLib StackTrace: at System.IO.FileStream.SeekCore(SafeFileHandle fileHandle, Int64 offset, SeekOrigin origin, Boolean closeInvalidHandle) at System.IO.FileStream.ReadNativeAsync(Memory`1 destination, Int32 numBufferedBytesRead, CancellationToken cancellationToken) at System.IO.FileStream.ReadAsyncInternal(Memory`1 destination, CancellationToken cancellationToken, Int32& synchronousResult) at System.IO.FileStream.ReadAsyncTask(Byte[] array, Int32 offset, Int32 count, CancellationToken cancellationToken) at System.IO.FileStream.Read(Byte[] array, Int32 offset, Int32 count) at System.IO.StreamReader.ReadBuffer() at System.IO.StreamReader.ReadToEnd() at Microsoft.Extensions.Configuration.Json.JsonConfigurationFileParser.ParseStream(Stream input) at Microsoft.Extensions.Configuration.Json.JsonConfigurationProvider.Load(Stream stream) at Microsoft.Extensions.Configuration.FileConfigurationProvider.Load(Boolean reload) at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at Microsoft.Extensions.Configuration.FileConfigurationProvider.HandleException(ExceptionDispatchInfo info) at Microsoft.Extensions.Configuration.FileConfigurationProvider.Load(Boolean reload) at Microsoft.Extensions.Configuration.FileConfigurationProvider.Load() at Microsoft.Extensions.Configuration.ConfigurationRoot..ctor(IList`1 providers) at Microsoft.Extensions.Configuration.ConfigurationBuilder.Build() at Microsoft.Extensions.Hosting.HostBuilder.BuildAppConfiguration() at Microsoft.Extensions.Hosting.HostBuilder.Build() at TRMApi.Program.Main(String[] args) in C:\Users\Minette\Desktop\Learning\IamTimCorey_03-21-21\LearningDevOpsProject\TRMApi\Program.cs:line 16 This exception was originally thrown at this call stack: [External Code] TRMApi.Program.Main(string[]) in Program.cs
@marvinbrereton3868
@marvinbrereton3868 2 года назад
Message=Access to the path 'C:\Users\Minette\Desktop\Learning\IamTimCorey_03-21-21\LearningDevOpsProject\TRMApi\appsettings.json' is denied. This is your issue
Далее
مسبح السرير #قصير
00:19
Просмотров 2,5 млн
How GIT works under the HOOD?
16:01
Просмотров 195 тыс.
Is Azure DevOps Going Away? If So, Where Do We Go?
11:42
Getting Started with Azure DevOps Repos
14:00
Просмотров 57 тыс.