Skip to content

Commit 4358d48

Browse files
committed
Added TypeScriptCompileBlocked element to turn off Visual Studio Auto TypeScript compile.
1 parent 74d4b34 commit 4358d48

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

src/Coalesce.Web/Coalesce.Web.csproj

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk.Web">
2-
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
32
<PropertyGroup>
43
<VersionPrefix>1.1.0</VersionPrefix>
54
<TargetFramework>net46</TargetFramework>
@@ -9,19 +8,17 @@
98
<OutputType>Exe</OutputType>
109
<PackageId>Coalesce.Web</PackageId>
1110
<UserSecretsId>aspnet-AspNetCoreTest-c1a899d5-70d6-46f0-ba4b-f4986ebe6948</UserSecretsId>
11+
<TypeScriptCompileBlocked>True</TypeScriptCompileBlocked>
1212
</PropertyGroup>
13-
1413
<ItemGroup>
1514
<Content Update="wwwroot\**\*;Views\**\*;appsettings.json;web.config">
1615
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
1716
</Content>
1817
</ItemGroup>
19-
2018
<ItemGroup>
2119
<ProjectReference Include="..\IntelliTect.Coalesce\IntelliTect.Coalesce.csproj" />
2220
<ProjectReference Include="..\Coalesce.Domain\Coalesce.Domain.csproj" />
2321
</ItemGroup>
24-
2522
<ItemGroup>
2623
<PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="1.0.1" />
2724
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="1.0.1" />
@@ -44,23 +41,19 @@
4441
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink.Loader" Version="14.0.1" />
4542
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="1.0.0-msbuild3-final" />
4643
</ItemGroup>
47-
4844
<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
4945
<Reference Include="System" />
5046
<Reference Include="Microsoft.CSharp" />
5147
</ItemGroup>
52-
5348
<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
5449
<Exec Command="npm install" />
5550
<Exec Command="bower install" />
5651
<Exec Command="gulp clean" />
5752
<Exec Command="gulp min" />
5853
</Target>
59-
6054
<ItemGroup>
6155
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="1.0.0-msbuild3-final" />
6256
<DotNetCliToolReference Include="Microsoft.Extensions.SecretManager.Tools" Version="1.0.0-msbuild3-final" />
6357
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="1.0.0-msbuild3-final" />
6458
</ItemGroup>
65-
66-
</Project>
59+
</Project>

0 commit comments

Comments
 (0)