Added config files

This commit is contained in:
Brett Hewitson 2021-11-20 23:06:43 +10:00
parent 564ab7b319
commit e9b6283e5e
8 changed files with 83 additions and 32 deletions

View file

@ -1,7 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<EnvironmentName>Development</EnvironmentName>
<Configurations>Debug;Release;Debug - Beta</Configurations>
<ApplicationIcon>Art\favicon.ico</ApplicationIcon>
</PropertyGroup>
@ -28,4 +29,16 @@
<ProjectReference Include="..\QueryMaster\QueryMaster.csproj" />
</ItemGroup>
<ItemGroup>
<Content Update="web.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="web.Development.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="web.Production.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>