-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathJavaScriptEngineSwitcher.Sample.AspNetCore1Full.Mvc1.csproj
More file actions
54 lines (47 loc) · 3.45 KB
/
JavaScriptEngineSwitcher.Sample.AspNetCore1Full.Mvc1.csproj
File metadata and controls
54 lines (47 loc) · 3.45 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<Product>JS Engine Switcher: Sample ASP.NET Core 1.0 Full MVC 1 Site</Product>
<VersionPrefix>3.32.0</VersionPrefix>
<TargetFramework>net451</TargetFramework>
<OutputType>Exe</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);NU1903;NU1904</NoWarn>
<PreserveCompilationContext>true</PreserveCompilationContext>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<IsPackable>false</IsPackable>
</PropertyGroup>
<Import Project="../../build/common.props" />
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" VersionOverride="1.0.5" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" VersionOverride="1.0.6" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.TagHelpers" VersionOverride="1.0.6" />
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" VersionOverride="1.0.6" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" VersionOverride="1.0.6" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" VersionOverride="1.0.5" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" VersionOverride="1.0.2" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" VersionOverride="1.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging" VersionOverride="1.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" VersionOverride="1.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" VersionOverride="1.0.2" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" VersionOverride="1.0.2" />
<PackageReference Include="JavaScriptEngineSwitcher.ChakraCore.Native.win-arm" />
<PackageReference Include="JavaScriptEngineSwitcher.ChakraCore.Native.win-arm64" />
<PackageReference Include="JavaScriptEngineSwitcher.ChakraCore.Native.win-x64" />
<PackageReference Include="JavaScriptEngineSwitcher.ChakraCore.Native.win-x86" />
<ProjectReference Include="../../src/JavaScriptEngineSwitcher.ChakraCore/JavaScriptEngineSwitcher.ChakraCore.csproj" />
<ProjectReference Include="../../src/JavaScriptEngineSwitcher.Extensions.MsDependencyInjection/JavaScriptEngineSwitcher.Extensions.MsDependencyInjection.csproj" />
<ProjectReference Include="../../src/JavaScriptEngineSwitcher.Jurassic/JavaScriptEngineSwitcher.Jurassic.csproj" />
<ProjectReference Include="../../src/JavaScriptEngineSwitcher.Msie/JavaScriptEngineSwitcher.Msie.csproj" />
<ProjectReference Include="../JavaScriptEngineSwitcher.Sample.AspNetCore.Infrastructure/JavaScriptEngineSwitcher.Sample.AspNetCore.Infrastructure.csproj" />
<ProjectReference Include="../JavaScriptEngineSwitcher.Sample.Logic/JavaScriptEngineSwitcher.Sample.Logic.csproj" />
<ProjectReference Include="../JavaScriptEngineSwitcher.Sample.Resources/JavaScriptEngineSwitcher.Sample.Resources.csproj" />
<ProjectReference Include="../../src/JavaScriptEngineSwitcher.Vroom/JavaScriptEngineSwitcher.Vroom.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Update="wwwroot/**/*;Views/**/*">
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</None>
</ItemGroup>
<Import Project="../JavaScriptEngineSwitcher.Sample.AspNetCore.ClientSideAssets/ensure-client-side-assets-builded.targets" />
</Project>