Dude this came just in time just started moving assemblies over to NuGet thanks bro
@AngelSix7 жыл бұрын
Your welcome
@MrThem07 жыл бұрын
You can see your "secret" key in Cmd's window title, better change it :)
@AngelSix7 жыл бұрын
Thanks for the catch. Changed it anyway now :)
@joshibhushan12 жыл бұрын
When I am performing pack operation for the project then projectName.nupkg is not getting created. VSTS2022. Any idea ?
@davidkeylock78403 жыл бұрын
Best video on the subject I've found, thanks
@bezraboten34277 жыл бұрын
Great video. Thank you!
@AngelSix7 жыл бұрын
Thanks
@chhinsras2 жыл бұрын
I have extension method for IServiceCollection and create nuget package. but it is not assisble, why?
@crazytk165 жыл бұрын
Exactly what I needed!
@tomas1206 жыл бұрын
Hey Luke. Thanks for the tutorial. Is there any way to make the package private? Only accesible by me or a group of people? Or you know a tool that updates automatically the .dll from all projects that uses it as reference? so that it is not necessary to delete the reference and add it again
@AngelSix6 жыл бұрын
You can host your own nuget feed to keep it private docs.microsoft.com/en-us/nuget/hosting-packages/overview
@patrikbak81617 жыл бұрын
Nice and easy :) But how do you make that IntelliSense shows the documentation to methods from the package?
@haydensprogramming67667 жыл бұрын
Use XML comment on methods by using the /// comments
@AngelSix7 жыл бұрын
As Hayden said, thats why all my code has XML comments (the /// stuff, all that is then visible when using it)
@patrikbak81617 жыл бұрын
I'm very aware of XML comments :) My point is: I installed Dna.Framework package and IntelliSense doesn't show any documentation of its methods. image.prntscr.com/image/kdvvXgRxSaSdFAA_WiAVgw.png
@AngelSix7 жыл бұрын
Ah yes it needs the project properties Build > Generate XML Documentation checked. I'll do that on the next push tomorrow
@patrikbak81617 жыл бұрын
Alright, thank you :)
@MultiMinors7 жыл бұрын
Can i take your animation attached properties into different project, edit it by myself, add new animations, edit a bit firstload mechanic, add new animation directions and make it as NuGet Package? How to credit you properly? Or, maybe you can make something like this by yourself?
@AngelSix7 жыл бұрын
Sure you can do that. If you want to show credits perhaps just add it in the project description of the nuget package?
@RioTheHitman7 жыл бұрын
AngelSix what would be the easiest way to convert a .Netframework based library to a standard library? Possible vid
@AngelSix7 жыл бұрын
I believe .Net 2.0 is 100% compatible now with a .Net Framework class library other than any third party references. Could be wrong, but start with making a new .Net Standard library, copy/paste all the code files and project structure into the new project and try building.
@RioTheHitman7 жыл бұрын
AngelSix Thanks my man that worked like a charm
@AngelSix7 жыл бұрын
Perfect
@jameswaichungo73067 жыл бұрын
Thanks again for this great tutorial
@AngelSix7 жыл бұрын
No problem
@riky81117 жыл бұрын
Hello, I'm here about dna web. I do often use variables, and what kind of bothers me is, you cant make variable icon like this: " " All is linked correctly. I've tried including header to file _variables.dhtml, doesnt work. Would appreciate this feature! There's a change that i might do something wrong, and I can't figure it out. Using variable like this " $$Bitcoin$$ . Dnaweb log doesn't complain, just says "Successfully processed".
@riky81117 жыл бұрын
Shouldn't variables replace text where you use them? I don't know if I am correct with this statement.
@AngelSix7 жыл бұрын
lolRiky the data is XML format so you need to escape XML special characters like < and > in the value. Just Google XML special escaped characters
@riky81117 жыл бұрын
Oh yea, didn't think about that one. It works now. Thank you so much.
@TurboTheo135 жыл бұрын
You could save your key in order to speedup your deployment. nuget SetApiKey
@AgentFire06 жыл бұрын
Hi. How can I get this dark explorer mode?
@AngelSix6 жыл бұрын
kzbin.info/www/bejne/rHPXd5Z-d52Fi7s
@omartalaat69326 жыл бұрын
Thanks for the video, I will like to know how can I update my created package
@AngelSix6 жыл бұрын
You just change your code, update the `Package` pages version in the project properties, build another nuget file and publish it. NuGet.org then realizes its a newer version and updates your package
@omartalaat69326 жыл бұрын
wonderful, I want to know, if I can connect the NuGet to GitHub? I mean that, I change my project in GitHub and the change will run directly in NuGet. is this possible ?
@AngelSix6 жыл бұрын
Omar Talaat I don't believe so no. You could setup a git hook to react to commits and automatically do that for you though with not much problem but you would have to increment your build number every commit then
@omartalaat69326 жыл бұрын
At the Moment i am using MyGet, but i am getting just Failed
@christianschulz44757 жыл бұрын
your key is in the window title
@AngelSix7 жыл бұрын
Christian Schulz yeah thanks for the catch. I changed it right after the video