438718507b
removed WebfrontSettings IW4MAdminSettings are only generated when the file does not exist, placeholder values stored in DefaultSettings.json
30 lines
1.4 KiB
XML
30 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<ApplicationIcon />
|
|
<StartupObject />
|
|
<PackageId>RaidMax.IW4MAdmin.SharedLibraryCore</PackageId>
|
|
<Version>2.0.0</Version>
|
|
<Authors>RaidMax</Authors>
|
|
<Company>Forever None</Company>
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.0.2" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.0.2" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="2.0.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.0.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="2.0.1" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
|
<PackageReference Include="SimpleCrypto.NetCore" Version="1.0.0" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
|
<Exec Command="if not exist "$(SolutionDir)BUILD" (
md "$(SolutionDir)BUILD"
)
if not exist "$(SolutionDir)BUILD\Plugins" (
md "$(SolutionDir)BUILD\Plugins"
)" />
|
|
</Target>
|
|
|
|
</Project>
|