How to configure a Build process when your code depends on (local) DLLsHow do I remedy the “The breakpoint will not currently be hit. No symbols have been loaded for this document.” warning?ReSharper “Cannot resolve symbol” even when project buildsAzure DevOps, YAML release pipelines?How do I stop a build from running when I check in code?How do we trigger a build only for tags matching a patternAzure DevOps project build returning with log4net errorShare Variables between Build and Release pipeline in Azure DevOpsfolder structure in the remote git reposAzure Pipelines to build multiple solutions in a single repositoryPublish package in Azure Devops Artifacts using Azure Pipelines
What officially disallows US presidents from driving?
Would it be unbalanced to increase Wild Shape uses based on level?
Examples of proofs by making reduction to a finite set
The Planck constant for mathematicians
What exactly is a marshrutka (маршрутка)?
How would you control supersoldiers in a late iron-age society?
Add text inside circuit component in circuitikz environment
How are aircraft depainted?
Is there any benefit to riders on the front of a paceline?
How can I discourage sharing internal API keys within a company?
How To Make Earth's Oceans as Brackish as Lyr's
Consonance v. Dissonance
2000s space film where an alien species has almost wiped out the human race in a war
How to give my students a straightedge instead of a ruler
Bit one of the Intel 8080's Flags register
Reading double values from a text file
Can I fix my boots by gluing the soles back on?
Why are some files not movable on Windows 10?
POSIX compatible way to get user name associated with a user ID
Python web-scraper to download table of transistor counts from Wikipedia
What makes a smart phone "kosher"?
Why is the Digital 0 not 0V in computer systems?
Output a Super Mario Image
Usage of blank space in trade banner and text-positioning
How to configure a Build process when your code depends on (local) DLLs
How do I remedy the “The breakpoint will not currently be hit. No symbols have been loaded for this document.” warning?ReSharper “Cannot resolve symbol” even when project buildsAzure DevOps, YAML release pipelines?How do I stop a build from running when I check in code?How do we trigger a build only for tags matching a patternAzure DevOps project build returning with log4net errorShare Variables between Build and Release pipeline in Azure DevOpsfolder structure in the remote git reposAzure Pipelines to build multiple solutions in a single repositoryPublish package in Azure Devops Artifacts using Azure Pipelines
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm trying to configure an automated build process on Azure DevOps.
The problem is that my code depends on some libraries (Dlls) that are not tracked by my repository (and are not nuget packages).
Is it possible to load in some way the dependencies and make Azure DevOps use them?
I've already tried to create the pipeline following the Azure "wizard" but I'm not able to find any way to load the missing libraries.
I don't know anything about yaml files and how to use them so I just followed the instructions.
If possible, what I expect is to be able to configure a build agent that locates the untracked dependencies during the build process.
c# azure-devops desktop-application azure-pipelines-release-pipeline pivotal-crm
add a comment
|
I'm trying to configure an automated build process on Azure DevOps.
The problem is that my code depends on some libraries (Dlls) that are not tracked by my repository (and are not nuget packages).
Is it possible to load in some way the dependencies and make Azure DevOps use them?
I've already tried to create the pipeline following the Azure "wizard" but I'm not able to find any way to load the missing libraries.
I don't know anything about yaml files and how to use them so I just followed the instructions.
If possible, what I expect is to be able to configure a build agent that locates the untracked dependencies during the build process.
c# azure-devops desktop-application azure-pipelines-release-pipeline pivotal-crm
add a comment
|
I'm trying to configure an automated build process on Azure DevOps.
The problem is that my code depends on some libraries (Dlls) that are not tracked by my repository (and are not nuget packages).
Is it possible to load in some way the dependencies and make Azure DevOps use them?
I've already tried to create the pipeline following the Azure "wizard" but I'm not able to find any way to load the missing libraries.
I don't know anything about yaml files and how to use them so I just followed the instructions.
If possible, what I expect is to be able to configure a build agent that locates the untracked dependencies during the build process.
c# azure-devops desktop-application azure-pipelines-release-pipeline pivotal-crm
I'm trying to configure an automated build process on Azure DevOps.
The problem is that my code depends on some libraries (Dlls) that are not tracked by my repository (and are not nuget packages).
Is it possible to load in some way the dependencies and make Azure DevOps use them?
I've already tried to create the pipeline following the Azure "wizard" but I'm not able to find any way to load the missing libraries.
I don't know anything about yaml files and how to use them so I just followed the instructions.
If possible, what I expect is to be able to configure a build agent that locates the untracked dependencies during the build process.
c# azure-devops desktop-application azure-pipelines-release-pipeline pivotal-crm
c# azure-devops desktop-application azure-pipelines-release-pipeline pivotal-crm
asked Mar 28 at 11:34
RichardRichard
881 gold badge3 silver badges9 bronze badges
881 gold badge3 silver badges9 bronze badges
add a comment
|
add a comment
|
1 Answer
1
active
oldest
votes
There are the following tasks that you can use to download those dlls from various locations. You can just click add task and search for these. There are more complex ways like storing those in another repository and creating an artifact to use.
- Download Artifacts - FileShare
- AWS S3 Download
- Download Secure File
- Download File
- Copy Files over SSH
- SFTP /SSH download
Now if it were me, I would just add those DLLs in a lib folder and track those in your repository. That way everything is there that is needed to build your application.
add a comment
|
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55396584%2fhow-to-configure-a-build-process-when-your-code-depends-on-local-dlls%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
There are the following tasks that you can use to download those dlls from various locations. You can just click add task and search for these. There are more complex ways like storing those in another repository and creating an artifact to use.
- Download Artifacts - FileShare
- AWS S3 Download
- Download Secure File
- Download File
- Copy Files over SSH
- SFTP /SSH download
Now if it were me, I would just add those DLLs in a lib folder and track those in your repository. That way everything is there that is needed to build your application.
add a comment
|
There are the following tasks that you can use to download those dlls from various locations. You can just click add task and search for these. There are more complex ways like storing those in another repository and creating an artifact to use.
- Download Artifacts - FileShare
- AWS S3 Download
- Download Secure File
- Download File
- Copy Files over SSH
- SFTP /SSH download
Now if it were me, I would just add those DLLs in a lib folder and track those in your repository. That way everything is there that is needed to build your application.
add a comment
|
There are the following tasks that you can use to download those dlls from various locations. You can just click add task and search for these. There are more complex ways like storing those in another repository and creating an artifact to use.
- Download Artifacts - FileShare
- AWS S3 Download
- Download Secure File
- Download File
- Copy Files over SSH
- SFTP /SSH download
Now if it were me, I would just add those DLLs in a lib folder and track those in your repository. That way everything is there that is needed to build your application.
There are the following tasks that you can use to download those dlls from various locations. You can just click add task and search for these. There are more complex ways like storing those in another repository and creating an artifact to use.
- Download Artifacts - FileShare
- AWS S3 Download
- Download Secure File
- Download File
- Copy Files over SSH
- SFTP /SSH download
Now if it were me, I would just add those DLLs in a lib folder and track those in your repository. That way everything is there that is needed to build your application.
answered Mar 28 at 13:47
JamieJamie
1,3439 silver badges23 bronze badges
1,3439 silver badges23 bronze badges
add a comment
|
add a comment
|
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55396584%2fhow-to-configure-a-build-process-when-your-code-depends-on-local-dlls%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown