27 lines
643 B
XML
27 lines
643 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<UserSecretsId>7a9d4585-3e95-4564-a350-5fe756d1351f</UserSecretsId>
|
|
<AssemblyName>Lampac</AssemblyName>
|
|
<RootNamespace>Lampac</RootNamespace>
|
|
<ServerGarbageCollection>false</ServerGarbageCollection>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Data\**" />
|
|
<Content Remove="Data\**" />
|
|
<EmbeddedResource Remove="Data\**" />
|
|
<None Remove="Data\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Shared\Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="wwwroot\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|