Posts by Claudio Neto • 13 points
7 posts
-
0
votes1
answer271
viewsA: Problems with Msbuild version
I was able to release version 12.0 by installing Msbuild Tools 2013: https://www.microsoft.com/en-us/download/details.aspx?id=40760 However, when I build with version 12.0, I get error messages…
-
0
votes1
answer271
viewsQ: Problems with Msbuild version
In the company where I work, front development is completely separate from back. Therefore, front developers do not have Visual Studio installed and rely on devs. Net to build and raise Dlls so they…
-
0
votes1
answer176
viewsQ: ngRoute breaking when accessing a specific url
Hello! I have a problem in ngRoute that I can not understand the reason. Basically, when I try to access a route-specific URL from outside the application (not from an application link), I get the…
-
0
votes1
answer872
viewsQ: Navbar bootstrap Collapse
I need a customization in a navbar that is the following: First, without the Collapse, appear this way (this I achieved and it is very quiet) Then, when you have smaller screens, turn into 2 buttons…
-
0
votes2
answers373
viewsA: Problems with ASP.Net MVC routes
I solved with a "gambiarra": inverti ID with Action on the route, getting {controller}/{id}/{action}. So when I make a call on the backend, you always pass the item ID (or 0 when I don’t have). I…
-
0
votes2
answers373
viewsQ: Problems with ASP.Net MVC routes
I have a problem with routes in MVC. routes.MapRoute( name: "Default", url: "{controller}/{id}", defaults: new { controller = "Login", action = "Index", id = UrlParameter.Optional } ); This route,…
-
1
votes1
answer1369
viewsQ: Double association with sequelize
I have the following relationship with the sequel // Tasks.js sequelize.models.tasks.belongsTo(sequelize.models.users, { foreignKey: { type: DataTypes.INTEGER, field: 'ASSIGNEE', allowNull: true },…