51 lines
1.9 KiB
XML
51 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="Areas\Bsi\Data\" />
|
|
<Folder Include="Areas\Bsi\Models\" />
|
|
<Folder Include="Areas\Dinas\Data\" />
|
|
<Folder Include="Areas\Dinas\Models\" />
|
|
<Folder Include="Areas\Nasabah\Data\" />
|
|
<Folder Include="Areas\Nasabah\Models\" />
|
|
<Folder Include="Areas\Satpel\Data\" />
|
|
<Folder Include="Areas\Satpel\Models\" />
|
|
<Folder Include="Areas\Shared\Layouts\LandingPage\" />
|
|
<Folder Include="Areas\Sudin\Data\" />
|
|
<Folder Include="Areas\Sudin\Models\" />
|
|
</ItemGroup>
|
|
|
|
</Project> |