31 lines
876 B
XML
31 lines
876 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<UserSecretsId>b8663b68-828f-4cf2-bb72-0be144eab6e1</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType>none</DebugType>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="DBServices\**" />
|
|
<Content Remove="DBServices\**" />
|
|
<EmbeddedResource Remove="DBServices\**" />
|
|
<None Remove="DBServices\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="wwwroot\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\YBDevice.WXApplication\YBDevice.WXApplication.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ProjectExtensions><VisualStudio><UserProperties appsettings_1json__JsonSchema="" /></VisualStudio></ProjectExtensions>
|
|
|
|
</Project>
|