Quantcast
Channel: Visual Studio General Questions forum
Viewing all 21115 articles
Browse latest View live

VS Community 2015 Licence trouble

$
0
0

I used a long time vs express 2013, but after installitiong unity, it does not work anymore. With unity installed vs community 2015 with 30 day trial license. Now license is over and i cant update it. I surfed a lot ot threads with same problem and all solutions were worthless:

1) update/download ie 11 - have it;

2) control panel - vs community 2015 - repair - done;

3) enroll for "vs dev essentials" - sign out then sign in - done;

Many threads from StackOverflow and   https://social.msdn.microsoft.com/Forums/en-US/d2339191-512e-4788-8631-18883397bee4/vs2015-community-we-could-not-download-a-license?

4) disable firewall and remove all from hosts (my paltry attempts to fix it)

screen: http://i.imgur.com/ncVxeMy.png

and sure i cannot create thread with images/links


Visual Studio 2015 + Heur.AdvML.B.

$
0
0

Problem:   When I compile my C program in Visual Studio 2015, Norton anti virus  removes the executable file Consoleapplication6.exe  and  or a “virus” it names as  Heur.AdvML.B.   and my C program will not run.

Question1:  Is there really a virus or is there an executable file generated that Norton thinks is a virus?

Question 2:  How can I resolve this and get my program running?

Visual Studio 2015 won't activate on Windows 7 with all updates installed

$
0
0


I am struggling with activating Visual Studio 2015 installation, getting the error "We could not refresh the credentials for the account

There was a problem executing within the global mutex 'AccountManagerAdalCacheMutex'".

The problem is persistent, summary of steps done so far to fix it:

- running "devenv.exe /ResetSetttings" did not help

 - confirmed running IE 11 already

- no proxy (all proxy settings unticked)

- no firewall

- added https://www.visualstudio.com/ ,https://login.microsoftonline.com/

and https://login.live.com/ to trusted sites after resetting zone settings

- javascript in IE is enabled

- tried 2 separate MSDN accounts

What can be wrong with this installation?

Problem with IntelliSense using MVC5

$
0
0

Help!!

My IntelliSense seems to be working fine in my Controllers, but declared variables are not recognizing later when used in a class.

Any suggestions?

Thanks,

Stephen S. Baca

ssbaca@computer.org

Grade Converter Application

$
0
0

I have been assigned an in class task to create an application where you enter a set of grades and it will calculate the average grade and how many students have taken the test. I have completed this part and have them shown in the application. The next part of the assignment requires us to show the amount of students who achieved a specific grade, like B which is between 80-90.

As my application receives all the test values and calculates them into a sum and saves that some as dblTotal I was wondering if anyone knows how I can get around drawing the values between 80-90 from the values that I enter into the application. Sorry if I don't make much sense I'm new to coding, and have just hit a brick work with this assignment. As its an assignment, I'm not asking for anyone to tell me the answers, just point me in the right direction and explain how I can draw the values, I know the calculations for example grade B would be all the scores between 80-90 added together and divided by the amount of numbers used.

Thanks in advance

This is my code thus far;

Public Class Form1
    Private Sub btnEnterTestScores_Click(sender As Object, e As EventArgs) Handles btnEnterTestScores.Click
        Dim StrInput As String
        Dim intNumScores As Integer 'The amount of test scores
        Dim intCount As Integer = 1 'Incease counter variable, initialized to 1
        Dim dblTestScore As Double 'Holds the test score
        Dim dblTotal As Double = 0 'Accumulator of all the entered values, initlizaed to 0
        Dim dblAverage As Double 'Average of all the test scores together
        'Ask the user how many test results there are.
        StrInput = InputBox("How many test results are there?")
        'Change the input to an integer value.
        If Integer.TryParse(StrInput, intNumScores) Then
            'Get all of the test scores.
            Do Until intCount > intNumScores
                'Ask user for the scores.
                StrInput = InputBox("Enter test score " & intCount.ToString())
                'Change input to double.
                If Double.TryParse(StrInput, dblTestScore) Then
                    'Add the score to the accumulator.
                    dblTotal += dblTestScore
                    'Increase counter by 1.
                    intCount += 1
                Else
                    'Error message if invalid value.
                    MessageBox.Show("Enter a numeric test score.")
                End If
            Loop
            'Show how many people took the test
            lblStudentAmount.Text = intNumScores.ToString()
            'Average of scores from class
            dblAverage = dblTotal / intNumScores
            lblAverage.Text = dblAverage.ToString()
            'Students achieved A
            'Percentage achieved A
            'Range of grade A
            'Average of grade A

        End If
    End Sub

The last four comments in the documents are the ones I'm working for, I need to find out how many students achieved 80-90, convert that to a percentage, work out the range of grade A, the lowest value between 80-90 and the highest value, as well as the average achieved in that category.

Again I stress as this is an assignment I'm not looking for full pieces of coding, just pointers in the right direction.

visual studio 2010 has stopped working

$
0
0

my visual studio 2010 crashed with below error

Problem signature:
  Problem Event Name:APPCRASH
  Problem Signature 01:devenv.exe
  Problem Signature 02:10.0.30319.1
  Problem Signature 03:4ba1fab3
  Problem Signature 04:KERNELBASE.dll
  Problem Signature 05:6.1.7601.23418
  Problem Signature 06:5708a7e4
  Problem Signature 07:80042b8c
  Problem Signature 08:0000c54f
  OS Version:6.1.7601.2.1.0.256.4
  Locale ID:1033

I'm running Windows 7 service pack1(x64). Hoepfully someone has come across this problem and has found a solution. I plan on reinstalling VS2010. Hopefully that takes care of the problem.

Also some more warning while Build Solution

Warning1 The reference assemblies for framework ".NETFramework,Version=v4.0" were not found. To resolve this, install the SDK or Targeting Pack for this framework version or retarget your application to a version of the framework for which you have the SDK or Targeting Pack installed. Note that assemblies will be resolved from the Global Assembly Cache (GAC) and will be used in place of reference assemblies. Therefore your assembly may not be correctly targeted for the framework you intend.

Warning2 A problem occurred while trying to set the "References" parameter for the IDE's in-process compiler. Error HRESULT E_FAIL has been returned from a call to a COM component.

Problem converting to int64 from string

$
0
0

In the link

https://msdn.microsoft.com/en-us/library/0zahhahw(v=vs.110).aspx

The following statement of your example does not work in MVC 5.

result = Convert.ToInt64(value);

It will not compile and produces 3 errors:

Error      1              Invalid token '=' in class, struct, or interface member declaration                H:\cciInventory\Developement\InventoryExperiment1\InventoryExperiment1\Classes\ItemDataControllerManager.cs                23           16           InventoryExperiment1

Error      3              Invalid token ')' in class, struct, or interface member declaration                H:\cciInventory\Developement\InventoryExperiment1\InventoryExperiment1\Classes\ItemDataControllerManager.cs                23           42           InventoryExperiment1

Error      2              Invalid token '(' in class, struct, or interface member declaration                H:\cciInventory\Developement\InventoryExperiment1\InventoryExperiment1\Classes\ItemDataControllerManager.cs                23           34           InventoryExperiment1

 

This example works fine in WebForms but not on our machines using MVC5.

 

Any Suggestions would be appreciated.

 

Regards,

Stephen S. Baca

ssbaca@computer.org

Got message and frozen when using the SSIS in Visual Studio 2015

$
0
0

Got a message and frozen when using the SSIS in Visual Studio 2015. No solution by google.  did try Repair, Uninstall, Reinstall. No helps.

Visual Studio is waiting for an operation to complete. If you regularly encounter this delay during normal usage please report this problem to Microsoft. Please include a description of the work you’re doing in Visual Studio and when possible instruction.

Thanks!

Daphne


Visual Studio 2015 - all build related tasks (clean, build, rebuild) fail for all projects, same projects build fine on command line.

$
0
0

Hi,

I would very much appreciate any help I can get as I've tried everything short of wiping the drive and reinstalling windows on my development machine.

I tried removing Python Tools for VS as the issue occurred after I installed that add-on. The removal changed nothing. I tried a repair install and I'm not sure what else I can try. Most likely there is some setting somewhere that makes my VS2015 to fail every single build operation. Regardless of what it is or on which project it is run I get very similar output:

Every build related task ends with the same output:

1>------ Build started: Project: ConsoleApplication1, Configuration: Debug Any CPU ------
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

Clean:

1>------ Clean started: Project: ConsoleApplication1, Configuration: Debug Any CPU ------
========== Clean: 0 succeeded, 1 failed, 0 skipped ==========

This is for a new console app project (as well as any other existing project and solution I tried) that contains simple hello world acting as a build test. The same project builds fine using MSBuild on the command line.

The same project opened in Visual Studio 2013 builds and runs fine with typical output shown below:

1>------ Build started: Project: ConsoleApplication1, Configuration: Debug Any CPU ------
1>  ConsoleApplication1 -> C:\shared\temp\test2\ConsoleApplication1\ConsoleApplication1\bin\Debug\ConsoleApplication1.exe
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========

In Tools->Options->Projects and Solutions->MSBuild I already have Diagnostic output from MSBuild selected, but I still get nothing else than the output shown.

If I try to build the same project on command line with MSBuild command prompt for VS2015 it works fine with the command below:

MSBuild.exe C:\shared\temp\test2\ConsoleApplication1\ConsoleApplication1\ConsoleApplication1.csproj /verbosity:d

Additional piece of info. If I put intentional typos in the code the build output is exactly the same.  No errors, just build failed.

Visual basic program that outputs the positions of a word in a sentence

$
0
0

I am new to Visual Basic so bear with me! I have created this form program that counts the amount of times a word occurs in a sentence. I was just wondering how I could alter this so it would show the position of the word in the sentence. For example if then sentence is: "cat dog horse cat" and the word is "cat", it would output 1,4 as it occurs in those positions. My code at the moment is below. Many thanks!

Code:

Public Class Form1

    Dim Counter As Integer = 0

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        If Word.Text = "" Then

            Counter1.Text = "ERROR - No input"

        Else

            Counter = (Sentence.Text.Length - Sentence.Text.Replace(Word.Text, "").Length) / Word.Text.Length

            If Counter = 0 Then

                Counter1.Text = "ERROR - Word not in sentence"

            Else

                Counter1.Text = Counter

            End If

        End If

    End Sub

    Private Sub Reset_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Reset.Click

        Counter = 0

        Sentence.Text = ""

        Word.Text = ""

        Counter1.Text = "-"

    End Sub

End Class

Visual studio hangs when creating Azure App Service from Server Explorer

$
0
0

Whenever I try to create an Azure App Service from inside Visual Studio via the Server Explorer Visual Studio hangs. I also get a message that Visual Studio is waiting for an internal operation to complete.

The "Create App Service" window shows up and a generic Web App Name is added however the circles next to Web App Name textbox (that I assume should turn into a green check-mark) is frozen and I can't edit or do anything in the window. The entire window is completely frozeon. The only way to exit this state is by killing Visual Studio.

This issue is happening on both Windows 7 and Windows 10, both with Visual Studio 2015 professional, both with Azure SDK 2.8.1

MSDN Subscription Missing

$
0
0

Hello, with the migration to the new subscriber portal, I seem to have lost my MSDN Enterprise license.

I used to have this:

Visual Studio Enterprise with MSDN (VL)
James Hippolite, james.hippolite@spark.co.nz
Subscriber ID:MVL4E9A4ECC6

Now, all I seem to have is this:

Visual Studio Dev Essentials    7235fdcf-18df-4e6e-9a92-8c042491180d    Free    Perpetual
T801876@spark.co.nz
james.hippolite@spark.co.nz

Can somebody please help me to reattach my corporate subscription to my Microsoft Live ID credential?


James Hippolite Wellington, NZ

Speficic questions about Visual Studio Community product

$
0
0

Hi.

I'm a c# developer and I've always used Visual Studio Professional licensed. I'm developer of different types of applications (mobile, desktop, web sites).

I have never been worrying about the future of mobile applications that I will develop, because I know that those applications may be introduced in AppStore and PlayStore. I dont know the productVisual Studio Community. I have not been able to find documentation or answers for the following questions:

With Visual Studio Community, can I develop mobile applications with Xamarin without paying license?
With Visual Studio Community, can I develop mobile applications with Xamarin and can I introduce these mobile applications to AppStore and PlayStore?
With Visual Studio Community, can I use Nuget, as well as Visual Studio Professional?

Thank you for your support and help.

Gustavo

Visual Studio 2013 Crashes on Startup

$
0
0

Hi,

I am trying to put the Visual Studio 2013 on the Intel Compute Stick. The installation was successful, but it crashed right after Visual Studio was loaded. I have access to Dreamspark, thus, I tried Visual Studio 2013 Professional, Premium, Ultimate and Express (Windows desktop). They all experienced the same issue.  This issue only occurs on the Visual Studio. Other programs that come with Visual Studio, such as Blend for Visual Studio, are working fine.

Anyone has any idea what the problem is? Thank you so much.

Cheers,

Rocky 

How Do i read a webpage

$
0
0

Dear Experts,

From C# win forms project i want to read  data from

https://www.tinxsys.com/TinxsysInternetWeb/searchByTin_Inter.jsp 

here it askes  the TIN number and display as 

and the result is shown as

how can i read the result



when submit Tax Status infomation alway say that Cannot complete your request

$
0
0

Hi

I cannot submit my app before finish Tax Status,but every time when I submit my Tax Status infomation is always failed!It say that Cannot complete your request. We can't complete your request right now. Please try again later. Message 81000 (72752e20-12c9-479c-b652-c3798d1cdc5d,1) I register from China.Thank you for any help!

Data Sets Option is not Visible in Microsoft Visual Studio 2015 Community

$
0
0

Hi, 

Data Set Option is not Visible in Microsoft Visual Studio 2015 Community. 

I am using Microsoft Visual Studio 2015 Community, I am unable to find the Data Set option. I know that it should be available in Data Section. 

You have to right click on your Project then Add - New Item - Data but Data Set are not reflecting there. 

Please help me out. 

Awaiting for reply

Yogesh 

Incorrect code generation for ARM

$
0
0

Hi. This is actually not a question, this is a bug report. Visual Studios's bugtracker is broken for me, so it is not possible to send a bug through bugtracker, so I send it here. If boost recursive variant is used VS 2015 14.0.25422.01 Update 3 generates incorrect code for ARM platform in release build. Steps to reproduce:

1) Take boost 1.60.0. It is essential because boost::detail::variant::forced_return_no_return is an empty function in this version. If the function has non empty body (std:;sbort() or volatile int i = 0), then templates are inlined in a different way and bug goes away.

2) In a windows runtime component write following code. It is essential that this code is in a library, if it is placed in an application, then problem does not reproduce.

	std::vector<FieldValueType> vals;
	for (int64_t i = 0; i < 1; ++i) {
		vals.push_back(i);
	}

	FieldValueType recursive1(vals);
	FieldValueType recursive2(vals);

	// Operator == crashes on ARM if library is compiled in release mode
	volatile bool test = recursive2 == recursive1;

3) Call that code from an application.

4) Build Release build and run it on an ARM phone.

Here is a solution with everything set up: https://yadi.sk/d/8u2dnFg-wHSYg

Here is a solution with everything set up: https://yadi.sk/d/8u2dnFg-wHSYg

The application will crash either with access violation or with stack overflow error. This happens because function body is trucated, execution reaches end of part which is present and continues to execute code which belongs to the next function. Here is what happens in disassembly:

// We enter in-to a function here


6F7E230C F7FF F8D0            bl          __security_pop_cookie (6F7E14B0h)
6F7E2310 E8BD 0870            pop         {r4-r6,r11}
6F7E2314 F85D FB14            ldr         pc,[sp],#0x14
   226:     {
   227:
   228:     // ...applying the appropriate case:
   229: #   define BOOST_VARIANT_AUX_APPLY_VISITOR_STEP_CASE(z, N, _) \
   230:     case (Which::value + (N)): \
   231:         return (visitation_impl_invoke)( \
   232:               internal_which, visitor, storage \
   233:             , static_cast<BOOST_PP_CAT(T,N)*>(0) \
   234:             , no_backup_flag, 1L \
   235:             ); \
   236:     /**/
   237:
   238:     BOOST_PP_REPEAT(
6F7E2318 6813                 ldr         r3,[r2]
6F7E231A 6819                 ldr         r1,[r3]
6F7E231C 680A                 ldr         r2,[r1]
6F7E231E 2A00                 cmp         r2,#0
   226:     {
   227:
   228:     // ...applying the appropriate case:
   229: #   define BOOST_VARIANT_AUX_APPLY_VISITOR_STEP_CASE(z, N, _) \
   230:     case (Which::value + (N)): \
   231:         return (visitation_impl_invoke)( \
   232:               internal_which, visitor, storage \
   233:             , static_cast<BOOST_PP_CAT(T,N)*>(0) \
   234:             , no_backup_flag, 1L \
   235:             ); \
   236:     /**/
   237:
   238:     BOOST_PP_REPEAT(
6F7E2320 DA00                 bge         boost::detail::variant::visitation_impl<boost::mpl::int_<0>,boost::detail::variant::visitation_impl_step<boost::mpl::l_iter<boost::mpl::l_item<boost::mpl::long_<4>,int,boost::mpl::l_item<boost::mpl::long_<3>,std::basic_string<char,std::char_traits<char>,std::allocator<char> >,boost::mpl::l_item<boost::mpl::long_<2>,std::vector<unsigned char,std::allocator<unsigned char> >,boost::mpl::l_item<boost::mpl::long_<1>,boost::recursive_wrapper<std::vector<boost::variant<boost::detail::variant::recursive_flag<int>,std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::vector<unsigned char,std::allocator<unsigned char> >,std::vector<boost::recursive_variant_,std::allocator<boost::recursive_variant_> >,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boo+0DCh (6F7E2324h)
6F7E2322 43D2                 mvns        r2,r2


// Here is a problem. This tbb instruction is broken. If r2 is 1 then everything is OK. But otherwice we jump to 6F7E234E


6F7E2324 E8DF F002            tbb         [pc,r2]
6F7E2328 1309                 asrs        r1,r1,#0xC
6F7E232A 1313                 asrs        r3,r2,#0xC
6F7E232C 1313                 asrs        r3,r2,#0xC
6F7E232E 1313                 asrs        r3,r2,#0xC
6F7E2330 1313                 asrs        r3,r2,#0xC
6F7E2332 1313                 asrs        r3,r2,#0xC
6F7E2334 1313                 asrs        r3,r2,#0xC
6F7E2336 1313                 asrs        r3,r2,#0xC
6F7E2338 0909                 lsrs        r1,r1,#4
6F7E233A 6848                 ldr         r0,[r1,#4]
6F7E233C 6821                 ldr         r1,[r4]
6F7E233E F000 F969            bl          std::operator==<boost::variant<boost::detail::variant::recursive_flag<int>,std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::vector<unsigned char,std::allocator<unsigned char> >,std::vector<boost::recursive_variant_,std::allocator<boost::recursive_variant_> >,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_,boost::detail::variant::void_>,std::allocator<boost::variant<boost::detail::variant::recursive_flag<int>,std::basic_string<char,std::char_traits<char>,std::allocator<char> >,std::vector<unsigned char,std::allocator<unsigned char> >,std::vector<boost::recursive_variant_,std::allocator<boos (6F7E2614h)
   239:           BOOST_VARIANT_VISITATION_UNROLLING_LIMIT
   240:         , BOOST_VARIANT_AUX_APPLY_VISITOR_STEP_CASE
   241:         , _
   242:         )
   243:
   244: #   undef BOOST_VARIANT_AUX_APPLY_VISITOR_STEP_CASE
   245:
   246:     default: break;
   247:     }
   248:
   249:     // If not handled in this iteration, continue unrolling:
   250:     typedef mpl::int_<
   251:           Which::value + (BOOST_VARIANT_VISITATION_UNROLLING_LIMIT)
   252:         > next_which;
   253:
   254:     typedef BOOST_PP_CAT(step, BOOST_VARIANT_VISITATION_UNROLLING_LIMIT)
   255:         next_step;
   256:
   257:     typedef typename next_step::type next_type;
   258:     typedef typename is_same< next_type,apply_visitor_unrolled >::type
   259:         is_apply_visitor_unrolled;
   260:
   261:     return visitation_impl(
   262:           internal_which, logical_which
   263:         , visitor, storage
   264:         , is_apply_visitor_unrolled()
   265:         , no_backup_flag
   266:         , static_cast<next_which*>(0), static_cast<next_step*>(0)
   267:         );
   268: }
6F7E2342 F7FF F8B5            bl          __security_pop_cookie (6F7E14B0h)
6F7E2346 E8BD 0870            pop         {r4-r6,r11}
6F7E234A F85D FB14            ldr         pc,[sp],#0x14
--- No source file -------------------------------------------------------------


// We jump here. This is not a function, this is just portion of junk followed by next function.

$LN1100:
6F7E234E 0000                 movs        r0,r0
6F7E2350 0000                 movs        r0,r0
6F7E2352 0000                 movs        r0,r0
6F7E2354 0000                 movs        r0,r0
6F7E2356 0000                 movs        r0,r0
6F7E2358 0000                 movs        r0,r0
6F7E235A 0000                 movs        r0,r0
6F7E235C 0000                 movs        r0,r0
6F7E235E 0000                 movs        r0,r0
--- c:\users\kibergus\documents\visual studio 2015\projects\vs_bug_example\runtimecomponent\boost\variant\detail\visitation_impl.hpp
   168: }
   169:
   170: ///////////////////////////////////////////////////////////////////////////////
   171: // (detail) function template visitation_impl
   172: //
   173: // Invokes the given visitor on the type in the given variant storage.
   174: //
   175:
   176: template <
   177:       typename W, typename S
   178:     , typename Visitor, typename VPCV
   179:     , typename NBF
   180:     >
   181: inline
   182:     BOOST_VARIANT_AUX_GENERIC_RESULT_TYPE(typename Visitor::result_type)
   183: visitation_impl(
   184:       int, int, Visitor&, VPCV
   185:     , mpl::true_ // is_apply_visitor_unrolled
   186:     , NBF, W* = 0, S* = 0
   187:     )
   188: {
6F7E2360 E92D 4800            push        {r11,lr}
6F7E2364 46EB                 mov         r11,sp
   189:     // should never be here at runtime!
   190:     typedef typename Visitor::result_type result_type;
   191:     return ::boost::detail::variant::forced_return< result_type >();
6F7E2366 F000 F83B            bl          boost::detail::variant::forced_return<void> (6F7E23E0h) 

Why does VS keep reverting my settings?

$
0
0

I have used the Options -> Text Editor - All Languages -> General section to set line numbers and word wrap on for all languages.

Every few days, VS takes it upon itself to revert one or both of these settings to being off, which is very annoying.

Anyone any idea how I can persuade it to leave them as I want them?

Visual Studio 2015 Enterprise Update 3, on Windows 10 64-bit Pro with all latest updates.

Thanks


<p><strong>FREE custom controls for Lightswitch!</strong> A collection of useful controls for Lightswitch developers (Silverlight client only). <a href="http://visualstudiogallery.msdn.microsoft.com/9c342bec-e3e5-4c08-9993-35ccb26d3c9f"> Download from the Visual Studio Gallery</a>.</p> <p>If you're really bored, you could read about my experiments with .NET and some of Microsoft's newer technologies at <a href="http://dotnetwhatnot.pixata.co.uk/">http://dotnetwhatnot.pixata.co.uk/</a></p>

Typescript compilation in Web site project

$
0
0

Hello,

just wonder if is possible to compile .ts files in Web Site project (folder accessed via FTP - live web) without having to check 'Automatically compile TypeScript filest witch are not part of project'? (and ideally automatically send compiled .js over FTP to server)

Reason for that is , that we also  have asp.net core + react + webpack + typescript project where vs is generating .js files every time i save some .tsx and these files are then preffered in webpack compilation (and therefore showed in browser debug panel instead of tsx)

cheers

PS:
Microsoft Visual Studio Community 2015 Version 14.0.25431.01 Update 3
Microsoft .NET Framework Version 4.6.01586

Viewing all 21115 articles
Browse latest View live


Latest Images