697a752be0
fix rare issue with summing session scores copy font to expected wwwroot dir in debug mode so we get pretty icons when developing upgrade some packages pretty much reworked the entire server web config to support better validation and stuff.. not really a small fix finish web configuration changes (I think) finish up configuration changes and update shared library nuget
77 lines
4.4 KiB
XML
77 lines
4.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<ApplicationIcon />
|
|
<StartupObject />
|
|
<PackageId>RaidMax.IW4MAdmin.SharedLibraryCore</PackageId>
|
|
<Version>2.2.5</Version>
|
|
<Authors>RaidMax</Authors>
|
|
<Company>Forever None</Company>
|
|
<Configurations>Debug;Release;Prerelease</Configurations>
|
|
<PublishWithAspNetCoreTargetManifest>false</PublishWithAspNetCoreTargetManifest>
|
|
<LangVersion>7.1</LangVersion>
|
|
<PackageTags>IW4MAdmin</PackageTags>
|
|
<RepositoryUrl>https://github.com/RaidMax/IW4M-Admin/</RepositoryUrl>
|
|
<PackageProjectUrl>https://www.raidmax.org/IW4MAdmin/</PackageProjectUrl>
|
|
<Copyright>2019</Copyright>
|
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<Description>Shared Library for IW4MAdmin</Description>
|
|
<AssemblyVersion>2.2.5.0</AssemblyVersion>
|
|
<FileVersion>2.2.5.0</FileVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Prerelease|AnyCPU'">
|
|
<DebugType>full</DebugType>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Migrations\20181126232438_AddEndpointToEFServer.cs" />
|
|
<Compile Remove="Migrations\20181126233300_AddEndpointToEFServer.cs" />
|
|
<Compile Remove="Migrations\20181127143920_AddEndpointToEFServerUpdateServerIdType.cs" />
|
|
<Compile Remove="Migrations\20190222234606_AddIndexToEFMeta-KeyAndClientId.cs" />
|
|
<Compile Remove="Migrations\20190223012312_SetMaxLengthForMetaKey.cs" />
|
|
<Compile Remove="Migrations\20190907222702_AddMomentViewAnglesToAcSnapshot.cs" />
|
|
<Compile Remove="Migrations\20190907222702_AddMomentViewAnglesToAcSnapshot.Designer.cs" />
|
|
<Compile Remove="Migrations\20191120170503_AddDateAuditColumnsToSharedEntity.cs" />
|
|
<Compile Remove="Migrations\20191120170503_AddDateAuditColumnsToSharedEntity.Designer.cs" />
|
|
<Compile Remove="Migrations\20191120204934_AddDateAuditColumnsToSharedEntity.cs" />
|
|
<Compile Remove="Migrations\20191120204934_AddDateAuditColumnsToSharedEntity.Designer.cs" />
|
|
<Compile Remove="Migrations\20191120205633_AddDateAuditColumnsToSharedEntity.cs" />
|
|
<Compile Remove="Migrations\20191120205633_AddDateAuditColumnsToSharedEntity.Designer.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FluentValidation" Version="8.6.1" />
|
|
<PackageReference Include="Jint" Version="2.11.58" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.1" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.1" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.1">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.1.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Localization" Version="3.1.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="3.1.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.1.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="3.1.1" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
|
<PackageReference Include="Npgsql" Version="4.1.2" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="3.1.0" />
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="3.1.0" />
|
|
<PackageReference Include="SimpleCrypto.NetCore" Version="1.0.0" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
|
<Exec Command="if not exist "$(ProjectDir)..\BUILD" (
if $(ConfigurationName) == Debug (
md "$(ProjectDir)..\BUILD"
)
)
if not exist "$(ProjectDir)..\BUILD\Plugins" (
if $(ConfigurationName) == Debug (
md "$(ProjectDir)..\BUILD\Plugins"
)
)" />
|
|
</Target>
|
|
|
|
</Project>
|