Why won't VS2015 let me compile?
-
This should likely be in a lounge rant, but it is technical. I have a project on a system that I need to compile to fix an issue. The issue is trivial. But when I go to Build...all it gives me is "Run Code Analysis on Solution". :doh: I've reset permissions on the folder, I have made sure 2015 is up to date, but 2015 won't give me the prompts. What am I missing?
Charlie Gilley “They who can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.” BF, 1759 Has never been more appropriate.
-
This should likely be in a lounge rant, but it is technical. I have a project on a system that I need to compile to fix an issue. The issue is trivial. But when I go to Build...all it gives me is "Run Code Analysis on Solution". :doh: I've reset permissions on the folder, I have made sure 2015 is up to date, but 2015 won't give me the prompts. What am I missing?
Charlie Gilley “They who can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.” BF, 1759 Has never been more appropriate.
Did you try to Rebuild All (or how is it exactly called in VS2015? - I cannot recall ...)?
-
Did you try to Rebuild All (or how is it exactly called in VS2015? - I cannot recall ...)?
-
It's not in the menu. This is maddening
Charlie Gilley “They who can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.” BF, 1759 Has never been more appropriate.
How about: Rebuild Rebuild solution in the menu "Build"? Or just "Clear solution"?
-
This should likely be in a lounge rant, but it is technical. I have a project on a system that I need to compile to fix an issue. The issue is trivial. But when I go to Build...all it gives me is "Run Code Analysis on Solution". :doh: I've reset permissions on the folder, I have made sure 2015 is up to date, but 2015 won't give me the prompts. What am I missing?
Charlie Gilley “They who can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.” BF, 1759 Has never been more appropriate.
Check that your .vcxproj files are there. If they are, check the Properties of your project(s) to see if their dependencies are correct and if they generally make sense.
Robust Services Core | Software Techniques for Lemmings | Articles
The fox knows many things, but the hedgehog knows one big thing. -
This should likely be in a lounge rant, but it is technical. I have a project on a system that I need to compile to fix an issue. The issue is trivial. But when I go to Build...all it gives me is "Run Code Analysis on Solution". :doh: I've reset permissions on the folder, I have made sure 2015 is up to date, but 2015 won't give me the prompts. What am I missing?
Charlie Gilley “They who can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.” BF, 1759 Has never been more appropriate.
-
charlieg wrote:
What am I missing?
Presidents shouldn't be compiling software. You need a software developer. ;P
lol, true. I'm also the treasurer. It's oh dark thirty here and thanks for the laugh.
Charlie Gilley “They who can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.” BF, 1759 Has never been more appropriate.
-
This should likely be in a lounge rant, but it is technical. I have a project on a system that I need to compile to fix an issue. The issue is trivial. But when I go to Build...all it gives me is "Run Code Analysis on Solution". :doh: I've reset permissions on the folder, I have made sure 2015 is up to date, but 2015 won't give me the prompts. What am I missing?
Charlie Gilley “They who can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.” BF, 1759 Has never been more appropriate.
This is what is in the Build tab: image-2022-04-22-062801040 — ImgBB[^] This code lives on a VM that was migrated into a zero trust cloud. I can go back to the original VM, and 2015 there has the full build menu.
Charlie Gilley “They who can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.” BF, 1759 Has never been more appropriate.
-
This is what is in the Build tab: image-2022-04-22-062801040 — ImgBB[^] This code lives on a VM that was migrated into a zero trust cloud. I can go back to the original VM, and 2015 there has the full build menu.
Charlie Gilley “They who can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.” BF, 1759 Has never been more appropriate.
As I recall, Visual Studio has never supported working with solutions that are located on network/remote drives. Are you working with Visual Studio on the virtual machine where the solution resides?
The difficult we do right away... ...the impossible takes slightly longer.
-
Check that your .vcxproj files are there. If they are, check the Properties of your project(s) to see if their dependencies are correct and if they generally make sense.
Robust Services Core | Software Techniques for Lemmings | Articles
The fox knows many things, but the hedgehog knows one big thing.Weird, never figured it out. Pulled the project from a zip file, and it built. Appreciate all the suggestions.
Charlie Gilley “They who can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.” BF, 1759 Has never been more appropriate.
-
As I recall, Visual Studio has never supported working with solutions that are located on network/remote drives. Are you working with Visual Studio on the virtual machine where the solution resides?
The difficult we do right away... ...the impossible takes slightly longer.
-
Did you try to Rebuild All (or how is it exactly called in VS2015? - I cannot recall ...)?
FFmpeg /* * Blackmagic DeckLink output * Copyright (c) 2013-2014 Ramiro Polla * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * FFmpeg is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include using std::atomic; /* Include internal.h first to avoid conflict between winsock.h (used by * DeckLink headers) and winsock2.h (used by libavformat) in MSVC++ builds */ extern "C" { #include "libavformat/internal.h" } #include extern "C" { #include "libavformat/avformat.h" #include "libavutil/internal.h" #include "libavutil/imgutils.h" #include "avdevice.h" } #include "decklink_common.h" #include "decklink_enc.h" #if CONFIG_LIBKLVANC #include "libklvanc/vanc.h" #include "libklvanc/vanc-lines.h" #include "libklvanc/pixels.h" #endif /* DeckLink callback class declaration */ class decklink_frame : public IDeckLinkVideoFrame { public: decklink_frame(struct decklink_ctx *ctx, AVFrame *avframe, AVCodecID codec_id, int height, int width) : _ctx(ctx), _avframe(avframe), _avpacket(NULL), _codec_id(codec_id), _ancillary(NULL), _height(height), _width(width), _refs(1) { } decklink_frame(struct decklink_ctx *ctx, AVPacket *avpacket, AVCodecID codec_id, int height, int width) : _ctx(ctx), _avframe(NULL), _avpacket(avpacket), _codec_id(codec_id), _ancillary(NULL), _height(height), _width(width), _refs(1) { } virtual long STDMETHODCALLTYPE GetWidth (void) { return _width; } virtual long STDMETHODCALLTYPE GetHeight (void) { return _height; } virtual long STDMETHODCALLTYPE GetRowBytes (void) { if (_codec_id == AV_CODEC_ID_WRAPPED_AVFRAME) return _avframe->linesize[0] < 0 ? -_avframe->linesize[0] : _avframe->linesize[0]; else return ((GetWidth() + 47) / 48) * 128; }
-
FFmpeg /* * Blackmagic DeckLink output * Copyright (c) 2013-2014 Ramiro Polla * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * FFmpeg is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include using std::atomic; /* Include internal.h first to avoid conflict between winsock.h (used by * DeckLink headers) and winsock2.h (used by libavformat) in MSVC++ builds */ extern "C" { #include "libavformat/internal.h" } #include extern "C" { #include "libavformat/avformat.h" #include "libavutil/internal.h" #include "libavutil/imgutils.h" #include "avdevice.h" } #include "decklink_common.h" #include "decklink_enc.h" #if CONFIG_LIBKLVANC #include "libklvanc/vanc.h" #include "libklvanc/vanc-lines.h" #include "libklvanc/pixels.h" #endif /* DeckLink callback class declaration */ class decklink_frame : public IDeckLinkVideoFrame { public: decklink_frame(struct decklink_ctx *ctx, AVFrame *avframe, AVCodecID codec_id, int height, int width) : _ctx(ctx), _avframe(avframe), _avpacket(NULL), _codec_id(codec_id), _ancillary(NULL), _height(height), _width(width), _refs(1) { } decklink_frame(struct decklink_ctx *ctx, AVPacket *avpacket, AVCodecID codec_id, int height, int width) : _ctx(ctx), _avframe(NULL), _avpacket(avpacket), _codec_id(codec_id), _ancillary(NULL), _height(height), _width(width), _refs(1) { } virtual long STDMETHODCALLTYPE GetWidth (void) { return _width; } virtual long STDMETHODCALLTYPE GetHeight (void) { return _height; } virtual long STDMETHODCALLTYPE GetRowBytes (void) { if (_codec_id == AV_CODEC_ID_WRAPPED_AVFRAME) return _avframe->linesize[0] < 0 ? -_avframe->linesize[0] : _avframe->linesize[0]; else return ((GetWidth() + 47) / 48) * 128; }
What is it???? :zzz: :confused: :zzz: :confused:
-
What is it???? :zzz: :confused: :zzz: :confused:
Rep-point fluffing to get his spam link shown in his profile. Message and user reported.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
What is it???? :zzz: :confused: :zzz: :confused: