Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-01-03[AspNetCore] Match item templates' descriptions to those in VS WinRodrigo Moya
VS Windows shows all item templates as "Razor ...", without any mention to MVC, which causes confusion, so change to match the descriptions. Fixes https://devdiv.visualstudio.com/DevDiv/_workitems/edit/1016547
2019-11-15[AspNetCore] Add missing namespace to "RazorPageWithPageModel" templateRodrigo Moya
Fixes https://devdiv.visualstudio.com/DevDiv/_workitems/edit/1021958
2019-11-10[AspNetCore] Don't hard code BuildAction for Razor Component templateRodrigo Moya
Fixes https://devdiv.visualstudio.com/DevDiv/_workitems/edit/1012759
2019-10-28Update RazorPage.xft.xmlKeting Yang
Add period to the template description.
2019-10-28Update RazorPageWithPageModel.xft.xmlKeting Yang
Add period to the template description.
2019-10-28Update RazorComponent.xft.xmlKeting Yang
Add period to the template description.
2019-10-28Update MVCViewImportsPage.xft.xmlKeting Yang
Add period to the template description.
2019-10-28Update MVCViewStartPage.xft.xmlKeting Yang
Add period to the template description.
2019-10-28Update MVCViewPage.xft.xmlKeting Yang
Add period to the template description.
2019-09-23[AspNetCore] Add Razor Component file templateRodrigo Moya
Fixes https://devdiv.visualstudio.com/DevDiv/_workitems/edit/944132
2019-03-26[AspNetCore] Enable Razor Tag helpers for RCL projectsRodrigo Moya
2019-03-26[AspNetCore] Enable some more templates for Razor Class librariesRodrigo Moya
2019-03-26[AspDotNetCore] Support Razor page templates in Razor CLRodrigo Moya
Since Razor Class libraries are libraries, they target .NET Standard, so the condition for those item templates need to be extended to check for "DotNetCoreRazor" project capability.
2018-10-22[AspNetCore] Moves npmConfigurationFile out to ASP.NET and sets category to WebJose Miguel Torres
2018-10-22[AspNetCore] Adds an item template for NPM package.json fileJose Miguel Torres
2018-10-22[AspNetCore] Adds an item template for appsettingsJose Miguel Torres
2018-03-21[AspNetCore] Fix ASP.NET Core file templates modifying project fileMatt Ward
Adding a new .cshtml file from a file template to an ASP.NET Core project would modify the project file (.csproj) when it should not be modified. The problem was the files were added as None items whilst .cshtml are Content items. The project file would contain the following after adding a new cshtml file from a template: <ItemGroup> <Content Remove="Views\Index.cshtml" /> </ItemGroup> <ItemGroup> <None Include="Views\Index.cshtml" /> </ItemGroup> Another problem was that the Razor Page with view model file template specifies a DependentUpon property so this is added to the project file and the .cshtml and .cs files are nested where as the other .cshtml and .cs files created with the initial ASP.NET Core project template are not nested. The project file would include the following: <ItemGroup> <Compile Update="Views\Index.cshtml.cs"> <DependentUpon>Index.cshtml</DependentUpon> </Compile> </ItemGroup> Note that the .NET Core SDK does not indicate that .cshtml and .cs files are dependent on each other so they are not currently nested in the Solution window. New .cshtml files created from these updated file templates will not be nested in Solution window. Fixes VSTS #585219 Only new Razor Pages are nested
2017-06-30Moved ASP.NET Core templates and logic to separate AddInDavid KarlasĖŒ