Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Removed AspNetCompiler options to force compilation in place instead …
…of attempting to copy to output directory.
- Loading branch information
Showing
with
8 additions
and
24 deletions.
-
+0
−10
MSTC.sln
-
+8
−14
website/web.config
|
@@ -7,18 +7,8 @@ Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "website", "website\", "{2FE |
|
|
ProjectReferences = "{159a837e-df0b-4ea1-8581-ec4f20bc0cdc}|Mstc.Core.dll;" |
|
|
Debug.AspNetCompiler.VirtualPath = "/website" |
|
|
Debug.AspNetCompiler.PhysicalPath = "website\" |
|
|
Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\website\" |
|
|
Debug.AspNetCompiler.Updateable = "false" |
|
|
Debug.AspNetCompiler.ForceOverwrite = "true" |
|
|
Debug.AspNetCompiler.FixedNames = "false" |
|
|
Debug.AspNetCompiler.Debug = "True" |
|
|
Release.AspNetCompiler.VirtualPath = "/website" |
|
|
Release.AspNetCompiler.PhysicalPath = "website\" |
|
|
Release.AspNetCompiler.TargetPath = "PrecompiledWeb\website\" |
|
|
Release.AspNetCompiler.Updateable = "false" |
|
|
Release.AspNetCompiler.ForceOverwrite = "true" |
|
|
Release.AspNetCompiler.FixedNames = "false" |
|
|
Release.AspNetCompiler.Debug = "False" |
|
|
VWDPort = "56635" |
|
|
VWDVirtualPath = "/" |
|
|
EndProjectSection |
|
|
|
|
@@ -1,4 +1,4 @@ |
|
|
<?xml version="1.0"?> |
|
|
<?xml version="1.0"?> |
|
|
<configuration> |
|
|
<configSections> |
|
|
<section name="urlrewritingnet" restartOnExternalChanges="true" requirePermission="false" type="UrlRewritingNet.Configuration.UrlRewriteSection, UrlRewritingNet.UrlRewriter"/> |
|
@@ -293,17 +293,11 @@ |
|
|
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/> |
|
|
</providers> |
|
|
</entityFramework> |
|
|
<system.codedom> |
|
|
<compilers> |
|
|
<compiler |
|
|
language="c#;cs;csharp" |
|
|
extension=".cs" |
|
|
type="Microsoft.CSharp.CSharpCodeProvider, System, |
|
|
Version=2.0.3600.0, Culture=neutral, |
|
|
PublicKeyToken=b77a5c561934e089" |
|
|
compilerOptions="" |
|
|
warningLevel="1" |
|
|
/> |
|
|
</compilers> |
|
|
</system.codedom> |
|
|
<system.codedom> |
|
|
<compilers> |
|
|
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" compilerOptions="" warningLevel="1"> |
|
|
<providerOption name="CompilerVersion" value="v4.0"/> |
|
|
</compiler> |
|
|
</compilers> |
|
|
</system.codedom> |
|
|
</configuration>
|