1,965 questions
0
votes
0
answers
58
views
MSBuild ItemType and custom Build Action doesn't work as expected
I've written a pair of .xaml/.targets file to handle the compilation of pixel shaders in WPF.
This is my xaml file:
<?xml version="1.0" encoding="utf-8"?>
<...
0
votes
0
answers
76
views
After target change
I have an Excel workbook with 1 active sheet, another one is very hidden.
I have a userform which fills the labels from the title row in the visible sheet. Sometimes the title row happend to be ...
2
votes
1
answer
101
views
Skip projects in group if they don't have a platform
I have a Delphi 10.3 project group. All projects in it has the Win32 target platform, and only some of them has the Win64 target platform. When I build the group with MSBuild with /p:Platform=Win32, ...
0
votes
0
answers
34
views
Nested targets static branching loops (tar_map) in R with dependency from one iteration to the next
I have a set of targets that reside within two nested static branching loops. The target x depends on the results y of the first cycle only when processed in the second cycle. The following pseudo-...
0
votes
0
answers
19
views
How to mark low of entry candle as stoploss in pine script
I have written a code (it is very basic code related to ema cross). I just wanted to set low of entry candle as stoploss and double of entry candle span as target. I tried reading guide /library but I ...
1
vote
0
answers
28
views
Visual Studio 2022 Community Publish event called too early?
I want to delete appsettings.json from the publish folder after publishing the web application. I've added a bat file to do the job and call it on AfterTargets="Publish". My bat file gets ...
0
votes
0
answers
51
views
How to add logs to "Microsoft.Common.CurrentVersion.targets"?
As mentioned in my previous question, I'm having troubles getting my debugging symbols file created, so I'm trying to add logs in the corresponding target file.
While compiling my project, I see the ...
0
votes
1
answer
22
views
why target properties are not populated from the properties of dependancies
CMake documentation states the following:
Usage requirements are propagated by reading the INTERFACE_ variants of target properties from dependencies and appending the values to the non-INTERFACE_ ...
0
votes
0
answers
22
views
is it possible to edit existing CMake targets in CLion from the UI?
I'm using CLion 2024.2.3
By using the IDE and studying the documentation I still haven't found a way to edit CMake targets from the UI. I would like to be able to add/remove/change targets for ...
1
vote
0
answers
33
views
In Excel vb.net sheetchange event, how can i differentiate between a cell edit and a cell deletion
In an Excel vb.net vsto add-in, editing the contents of a cell, say A1, triggers the sheetchange event. Deletion of cell A1 (not deletion of its contents but deletion of the cell) also triggers the ...
0
votes
0
answers
27
views
A problem with video target tracking for key point matching
There is a problem that can't be solved, that is, after obtaining the key points, the tracking based on the key points should be carried out in the subsequent videos. For example, I want to use xfeat ...
0
votes
0
answers
69
views
How to run custom MSBuild target if files changed
I want to achieve the following msbuild behaviour:
I run build on clear project and my custom target "OnFilesChange" fired.
I do not change anything and run build again, my custom target &...
0
votes
0
answers
40
views
Generating xaml resources through MSBuild
I have a WPF application and am trying to create a very simple MSBuild step to generate some xaml resources based on an already existing xaml file.
In my App.xaml, I have :
<Application.Resources&...
0
votes
0
answers
25
views
TARGET attribute in hyperlink in a window open bye window.open () function
When I put the TARGET="info" attribute in different <A> tags, all the targeted pages open in the same tab.
But if I do the same thing in a page that was itself created by a call to ...
0
votes
2
answers
64
views
Open a new hyperlink in same tab previously opened
I have two hyperlinks <A Href="address1"... TARGET="info"> and <A Href="address2"... TARGET="info">
When I click the second one, it opens a new tab.
...