Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
What all tasks should I use to create a build pipeline for .NET Framework solution? I want to add specific settings for each task.
You can find many yaml templates here: azure-pipelines-yaml/templates/, .NET Desktop
For the classic pipelines just use predefined templates:
Create a new pipeline:
Select a source
Select a template
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
what is the best way to embed all of this .dll from system.text.json into my final .exe file?
https://i.imgur.com/FblAZO5.jpg
With .NET Core 3, you can use <PublishSingleFile> in your .csproj to create a single executable. You can also use <PublishTrimmed> to reduce the size of the executable by only including what your application actually uses.
https://www.hanselman.com/blog/MakingATinyNETCore30EntirelySelfcontainedSingleExecutable.aspx
If you're on .NET Framework, you can use ILMerge.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
Is it possible to use a WinRT component in a .NET Core 3 application?
Found a solution: registration-free WinRT.
For anyone reading this please see the following articles:
Enhancing Non-packaged Desktop Apps using Windows Runtime Components
Identity, Registration and Activation of Non-packaged Win32 Apps
There is also this repo with an example.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I want to reuse partial view in multiple ASP MVC applications. Is it possible to do that?
I have some partialview.cshtml which uses MyViewViewModel.cs and lots of typescripts/javascripts.
Is it possible to reuse all this code in different application?
If so, how I use views from external assembly?
look at razor generator: https://github.com/RazorGenerator/RazorGenerator
and look for samples in the internet
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I have a project "Implementation of cca" using dlib library c++, on the other hand, I have a project which used c#.
Actually, I have no idea how to link them.
Please can you help me
Use the System.Runtime.InteropServices-namespace like described here: https://msdn.microsoft.com/en-us/library/ms235282.aspx
Good examples are http://www.dotnetperls.com/dllimport or https://drthitirat.wordpress.com/2013/05/30/combine-gui-of-c-with-c-codes/
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
How can I use UPS integration in my asp.net application to get tracking information for a package?
You will find the UPS Integrate Tracking Tools on their homepage. You can find a sample that integrates with the UPS service at CodeProject