-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Delete a sample that is moved to dotnet/AspNetDocs #3745
Conversation
@adegeo The build check didn't run here. Only CLA is run. |
If you edit a code file, that will cause it to run. How about editing the Properties/AssemblyInfo.cs to increase the copyright date to 2020? @BillWagner New case to trigger a build, adding the snipppets json file. |
I need to update the tools. Whoops.. brb |
@adegeo Are these tools open source? Curious to look how they're implemented 😄 |
Just the results processing logic of the LocateProjects tool is: https://github.com/dotnet/docs/tree/master/.github/workflows/dependencies |
OK well we'll improve the tool next go around with a nuget restore for visual studio projects and see if that fixes this one 😁 I'll leave this issue open. |
closing and opening for a fresh CI build. |
ping @adegeo It looks like we need to setup the machine correctly to restore packages for old-style builds. Can you take a look? |
OK Lots of testing here to figure this out. It seems that the project itself has this error built into it, which was leading us down the wrong path. Specifically it looks for a v1.0.0 of a nuget package and if it's not found, errors out. It's also using an older version of visual studio and nuget references, which the normal visual studio (msbuild) is not automatically handling. You need to run The dependency bot upped the packages which ends up breaking the builds too. The newer versions of all these packages have changed enough that the interdependencies have changed quite a bit. Considering the app is 2 years old, running framework, and was built on an older visual studio, this app needs modernization to make it build correctly. @Rick-Anderson @scottaddie Is there a modern version of this MVC sample we can update to? |
I recommend retiring the sample and leaving the asp.net samples for us to update in https://github.com/dotnet/AspNetCore.Docs |
@Rick-Anderson Is there something in ASP.NET that we can retire this article for? I just noticed this is .NET Framework, not Core. |
It doesn't look like this sample belongs in this repo. From https://github.com/dotnet/samples/blob/master/README.md
We should keep MVC samples in the https://github.com/dotnet/AspNetCore.Docs repo. cc @scottaddie |
@Youssef1313 lets delete this sample. it's referenced in |
@adegeo That will break aspnet docs too. The sample should first be migrated to AspNetCore.Docs repo, and the corresponding article is updated. Then, we can delete the sample here, and change the link in samples-and-tutorials/index.md to point to AspNetCore.Docs. Then, we can delete it here. |
Whoops. I think I meant delete reference to this sample from https://github.com/dotnet/docs/tree/master/docs/samples-and-tutorials @Rick-Anderson Do you guys want this sample? It's MVC for classic ASP.NET. Considering the docker tutorial for classic ASP.NET references this sample as something to download and use for migrating an app to docker, I would think you guys want that somewhere 😄 |
I think there are plenty of ASP.NET 4.x docker samples. cc @scottaddie if he thinks it's worth moving. |
Please move this sample to the dotnet/AspNetDocs repo. It makes sense to keep the sample around since it's referenced by an ASP.NET 4.x doc. |
@Youssef1313 I apologize for all the delays. Do you want to make the updates here, or should we start over? |
@BillWagner Should the sample be deleted from dotnet/samples and added to AspNetDocs docs (and where in the repo)? |
@Youssef1313 Yes, that's where the discussion ended. |
@BillWagner I'm not sure where the sample should live in AspNetDocs repo |
@Youssef1313 Let's ask @scottaddie |
Please create a docker-aspnetmvc/samples/ directory within https://github.com/dotnet/AspNetDocs/tree/master/aspnet/mvc/overview/deployment. The sample app can move to that new directory. |
Thanks @scottaddie |
Thank you for all your hard work here, @Youssef1313! |
Addresses #3741 (comment)