2018-02-21 20:29:23 -05:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net452</TargetFramework>
|
|
|
|
<PreserveCompilationContext>true</PreserveCompilationContext>
|
2018-02-27 22:27:23 -05:00
|
|
|
<AssemblyName>IW4MAdmin</AssemblyName>
|
2018-02-21 20:29:23 -05:00
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<PackageId>WebfrontCore</PackageId>
|
2018-02-22 01:06:21 -05:00
|
|
|
<Platforms>AnyCPU;x86</Platforms>
|
2018-02-27 22:27:23 -05:00
|
|
|
<ApplicationIcon>wwwroot\favicon.ico</ApplicationIcon>
|
2018-03-06 02:22:19 -05:00
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2018-02-21 20:29:23 -05:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2018-03-06 02:22:19 -05:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
|
|
|
|
<OutputPath>bin\x86\Debug\</OutputPath>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2018-02-27 22:27:23 -05:00
|
|
|
<ItemGroup>
|
|
|
|
<Compile Remove="Application\Kayak.cs" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2018-02-21 20:29:23 -05:00
|
|
|
<ItemGroup>
|
|
|
|
<None Update="wwwroot\**\*">
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2018-03-13 20:12:24 -04:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="1.1.5" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.7" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Routing" Version="1.1.2" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.1.4" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.3" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.3" />
|
2018-02-21 20:29:23 -05:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="1.1.2" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="1.1.2" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="1.1.2" />
|
2018-03-13 20:12:24 -04:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.1.2" />
|
2018-02-21 20:29:23 -05:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.2" />
|
2018-03-13 20:12:24 -04:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="1.1.2" />
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink" Version="1.1.3" />
|
2018-02-21 20:29:23 -05:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
|
|
|
|
<Reference Include="System" />
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<DotNetCliToolReference Include="BundlerMinifier.Core" Version="2.2.301" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\SharedLibrary\SharedLibrary.csproj">
|
|
|
|
<Private>true</Private>
|
|
|
|
</ProjectReference>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2018-02-27 22:27:23 -05:00
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
2018-02-27 23:19:54 -05:00
|
|
|
<Exec Command="xcopy /Y "$(SolutionDir)BUILD\Plugins" "$(TargetDir)Plugins\"
xcopy /Y /I /E "$(SolutionDir)BUILD\Lib" "$(TargetDir)" 

xcopy /Y /I /E "$(ProjectDir)Application\Config" "$(TargetDir)Config"" />
|
2018-02-26 23:24:19 -05:00
|
|
|
</Target>
|
|
|
|
|
2018-02-21 20:29:23 -05:00
|
|
|
</Project>
|