2018-04-08 02:44:42 -04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
|
|
<ApplicationIcon />
|
|
|
|
<StartupObject />
|
|
|
|
<PackageId>RaidMax.IW4MAdmin.SharedLibraryCore</PackageId>
|
2018-04-22 16:04:18 -04:00
|
|
|
<Version>2.1.0</Version>
|
2018-04-08 02:44:42 -04:00
|
|
|
<Authors>RaidMax</Authors>
|
|
|
|
<Company>Forever None</Company>
|
2018-04-19 01:48:14 -04:00
|
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
2018-04-08 02:44:42 -04:00
|
|
|
</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" />
|
2018-04-22 16:04:18 -04:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Localization" Version="2.0.2" />
|
2018-04-08 02:44:42 -04:00
|
|
|
<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>
|
|
|
|
|
2018-04-10 21:08:14 -04:00
|
|
|
<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>
|
|
|
|
|
2018-04-08 02:44:42 -04:00
|
|
|
</Project>
|