bank-sampah/BankSampahApp.csproj

53 lines
1.9 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsNotAsErrors>NU1608</WarningsNotAsErrors>
<InvariantGlobalization>false</InvariantGlobalization>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.ApplicationInsights" Version="2.22.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="9.0.0" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.0" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="9.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.8.1" />
</ItemGroup>
<ItemGroup>
<Content Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="appsettings.Development.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Include=".gitlab\.gitkeep" />
<None Include=".gitlab\merge_request_templates\.gitkeep" />
<None Include=".gitlab\merge_request_templates\Default.md" />
</ItemGroup>
<ItemGroup>
<Folder Include="Data\" />
<Folder Include="Domain\Entities\" />
<Folder Include="Domain\Interfaces\" />
<Folder Include="Helpers\" />
<Folder Include="Utilities\" />
</ItemGroup>
<ItemGroup>
<!-- Exclude old Areas folder from compilation -->
<Compile Remove="Areas\**" />
<Content Remove="Areas\**" />
<EmbeddedResource Remove="Areas\**" />
<None Remove="Areas\**" />
</ItemGroup>
</Project>