All Projects → CZEMacLeod → MSBuild.SDK.SystemWeb

CZEMacLeod / MSBuild.SDK.SystemWeb

Licence: MIT license
This MSBuild SDK is designed to allow for the easy creation and use of SDK (shortform) projects targeting ASP.NET 4.x using System.Web.

Programming Languages

Visual Basic .NET
514 projects
C#
18002 projects
HTML
75241 projects
powershell
5483 projects
CSS
56736 projects
ASP.NET
160 projects

Projects that are alternatives of or similar to MSBuild.SDK.SystemWeb

Westwind.Web.Markdown
Markdown support for ASP.NET WebForms and MVC applications
Stars: ✭ 18 (-74.29%)
Mutual labels:  aspnet
auth0-aspnetcore-mvc-samples
Auth0 Integration Samples for ASP.NET Core MVC Web Applications
Stars: ✭ 120 (+71.43%)
Mutual labels:  aspnet
UMeditor-For-Azure-Blob
使用Microsoft Azure存储(Blob)保存 UMeditor中上传的图片、视频 、附件、涂鸦、等...
Stars: ✭ 18 (-74.29%)
Mutual labels:  aspnet
shopping-cart-k8s
Service Mesh patterns for Microservices
Stars: ✭ 57 (-18.57%)
Mutual labels:  aspnet
LeXun.Security.OAuth
用于 Asp.Net 和 Asp.Net Core 的OAuth2社交身份验证提供程序。支持支付宝,QQ,微信,百度等第三方登录
Stars: ✭ 19 (-72.86%)
Mutual labels:  aspnet
ZeroDepJson
A .NET Json parser in one .cs file, with zero dependencies.
Stars: ✭ 20 (-71.43%)
Mutual labels:  dotnetframework
identityazuretable
This project provides a high performance cloud solution for ASP.NET Identity Core using Azure Table storage replacing the Entity Framework / MSSQL provider.
Stars: ✭ 97 (+38.57%)
Mutual labels:  aspnet
riskfirst.hateoas
Powerful HATEOAS functionality for .NET web api
Stars: ✭ 69 (-1.43%)
Mutual labels:  aspnet
aspnet-api-versioning
Provides a set of libraries which add service API versioning to ASP.NET Web API, OData with ASP.NET Web API, and ASP.NET Core.
Stars: ✭ 2,396 (+3322.86%)
Mutual labels:  aspnet
ReCaptcha-Asp-Net
Google ReCaptcha for Asp Net, simplified
Stars: ✭ 51 (-27.14%)
Mutual labels:  aspnet
auth0-aspnet-owin-webapi-samples
Auth0 Integration Samples for ASP.NET OWIN Web API Services
Stars: ✭ 25 (-64.29%)
Mutual labels:  aspnet
X.Extensions.Logging.Telegram
Telegram logging provider
Stars: ✭ 32 (-54.29%)
Mutual labels:  aspnet
azure-sql-db-sync-api-change-tracking
Using Azure SQL Change Tracking API to Sync mobile Apps data with the Cloud
Stars: ✭ 58 (-17.14%)
Mutual labels:  aspnet
ngx-signalr-hubservice
Makes using SignalR in Angular 2/4 easy
Stars: ✭ 24 (-65.71%)
Mutual labels:  aspnet
run-aspnet-identityserver4
Secure microservices with using standalone Identity Server 4 and backing with Ocelot API Gateway. Protect our ASP.NET Web MVC and API applications with using OAuth 2 and OpenID Connect in IdentityServer4. Securing your web application and API with tokens, working with claims, authentication and authorization middlewares and applying policies.
Stars: ✭ 159 (+127.14%)
Mutual labels:  aspnet
Capstone.NET
.NET Core and .NET Framework binding for the Capstone Disassembly Framework
Stars: ✭ 108 (+54.29%)
Mutual labels:  dotnetframework
Adoxio.Dynamics.Connect
Implements OrganizationWebProxyClient with Dynamics 365 Server-to-Server authentication.
Stars: ✭ 20 (-71.43%)
Mutual labels:  aspnet
KissLog.Sdk
KissLog is a lightweight and highly customizable logging framework for .NET applications
Stars: ✭ 33 (-52.86%)
Mutual labels:  aspnet
ThreeDPayment
Est altyapısına sahip tüm bankalarla uyumlu 3DPay model sanal pos örneği - ASP.NET Core 3.1 ile yazılan yeni version https://github.com/sefacan/3DPaymentAspNetCore
Stars: ✭ 29 (-58.57%)
Mutual labels:  aspnet
Social-Network
Twitter like Social network written in ASP.NET MVC5
Stars: ✭ 23 (-67.14%)
Mutual labels:  aspnet

MSBuild.SDK.SystemWeb

Build Status Docs

This MSBuild SDK is designed to allow for the easy creation and use of SDK (shortform) projects targeting ASP.NET 4.x using System.Web.

What's available

MSBuild.SDK.SystemWeb

NuGet package NuGet downloads

This is the basic SDK that enables Visual Studio to work with an ASP.Net 4.x based project using a short form project file.

MSBuild.SDK.SystemWeb.Templates

NuGet package NuGet downloads

This is a set of templates that allow for the easy creation of projects based on the MSBuild.SDK.SystemWeb project SDK type.

MSBuild.SDK.SystemWeb.RazorLibrary

NuGet package NuGet downloads

This is an SDK that allows Visual Studio to work with an ASP.Net 4.x / MVC 5 based Razor Library. This makes it easy to use the RazorGenerator system with an SDK type project.

Read The Docs

Documentation

How can I use these SDKs?

When using an MSBuild Project SDK obtained via NuGet (such as the SDKs in this repo) a specific version must be specified.

Either append the version to the package name:

<Project Sdk="MSBuild.SDK.SystemWeb/4.0.76">
  ...

Or omit the version from the SDK attribute and specify it in the version in global.json, which can be useful to synchronise versions across multiple projects in a solution:

{
  "msbuild-sdks": {
    "MSBuild.SDK.SystemWeb" : "4.0.76"
  }
}

Since MSBuild 15.6, SDKs are downloaded as NuGet packages automatically. Earlier versions of MSBuild 15 required SDKs to be installed.

For more information, read the documentation.

What are MSBuild SDKS?

MSBuild 15.0 introduced new project XML for .NET Core that we refer to as SDK-style. These SDK-style projects looks like:

<Project Sdk="Microsoft.NET.SystemWeb">
  <PropertyGroup>
    <TargetFramework>net48</TargetFramework>
  </PropertyGroup>
</Project>

At evaluation time, MSBuild adds implicit imports at the top and bottom of the project like this:

<Project>
  <Import Project="Sdk.props" Sdk="Microsoft.NET.SystemWeb" />

  <PropertyGroup>
    <TargetFramework>net48</TargetFramework>
  </PropertyGroup>

  <Import Project="Sdk.targets" Sdk="Microsoft.NET.SystemWeb" />
</Project>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].