-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathMSBuild.SDK.SystemWeb.Templates.csproj
More file actions
35 lines (28 loc) · 1.06 KB
/
MSBuild.SDK.SystemWeb.Templates.csproj
File metadata and controls
35 lines (28 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<Project Sdk="Microsoft.Build.NoTargets">
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<PackageType>Template</PackageType>
<Description>Provides templates for projects that target System.Web using the MSBuild.SDK.SystemWeb SDK.</Description>
<PackageTags>MSBuild;MSBuildSdk;System.Web;Templates</PackageTags>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<Content Include="templates\**\*" />
<Compile Remove="**\*" />
</ItemGroup>
<ItemGroup>
<None Include="images\*" />
</ItemGroup>
<ItemGroup>
<Content Update="templates\**\*.vbproj" ReplaceVersion="true" />
<Content Update="templates\**\*.csproj" ReplaceVersion="true" />
</ItemGroup>
<ItemGroup>
<None Include="version.json" />
</ItemGroup>
</Project>