mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-10-30 15:06:06 +00:00
Rollback EFCore
This commit is contained in:
parent
0dbad19e3c
commit
b0e17f3cce
4 changed files with 30 additions and 6 deletions
|
|
@ -25,7 +25,7 @@
|
||||||
<DefineConstants>DEBUG;</DefineConstants>
|
<DefineConstants>DEBUG;</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<AndroidLinkMode>None</AndroidLinkMode>
|
<AndroidLinkMode>SdkOnly</AndroidLinkMode>
|
||||||
<AndroidSupportedAbis />
|
<AndroidSupportedAbis />
|
||||||
<AndroidHttpClientHandlerType>Xamarin.Android.Net.AndroidClientHandler</AndroidHttpClientHandlerType>
|
<AndroidHttpClientHandlerType>Xamarin.Android.Net.AndroidClientHandler</AndroidHttpClientHandlerType>
|
||||||
<AotAssemblies>false</AotAssemblies>
|
<AotAssemblies>false</AotAssemblies>
|
||||||
|
|
@ -50,8 +50,11 @@
|
||||||
<AotAssemblies>false</AotAssemblies>
|
<AotAssemblies>false</AotAssemblies>
|
||||||
<EnableLLVM>false</EnableLLVM>
|
<EnableLLVM>false</EnableLLVM>
|
||||||
<BundleAssemblies>false</BundleAssemblies>
|
<BundleAssemblies>false</BundleAssemblies>
|
||||||
<AndroidLinkMode>None</AndroidLinkMode>
|
<AndroidLinkMode>SdkOnly</AndroidLinkMode>
|
||||||
<AndroidEnableProfiledAot>true</AndroidEnableProfiledAot>
|
<AndroidEnableProfiledAot>true</AndroidEnableProfiledAot>
|
||||||
|
<AndroidCreatePackagePerAbi>true</AndroidCreatePackagePerAbi>
|
||||||
|
<AndroidDexTool>d8</AndroidDexTool>
|
||||||
|
<AndroidLinkTool>r8</AndroidLinkTool>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="Mono.Android" />
|
<Reference Include="Mono.Android" />
|
||||||
|
|
@ -62,10 +65,10 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore">
|
<PackageReference Include="Microsoft.EntityFrameworkCore">
|
||||||
<Version>2.2.6</Version>
|
<Version>2.0.3</Version>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core">
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core">
|
||||||
<Version>2.2.6</Version>
|
<Version>2.0.3</Version>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="Rg.Plugins.Popup">
|
<PackageReference Include="Rg.Plugins.Popup">
|
||||||
<Version>1.1.5.188</Version>
|
<Version>1.1.5.188</Version>
|
||||||
|
|
|
||||||
20
AideDeJeu/AideDeJeu.Android/linker.xml
Normal file
20
AideDeJeu/AideDeJeu.Android/linker.xml
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<linker>
|
||||||
|
<assembly fullname="mscorlib">
|
||||||
|
<type fullname="System.Environment">
|
||||||
|
<field name="mono_corlib_version" />
|
||||||
|
<method name="get_StackTrace" />
|
||||||
|
</type>
|
||||||
|
</assembly>
|
||||||
|
<assembly fullname="My.Own.Assembly">
|
||||||
|
<type fullname="Foo" preserve="fields">
|
||||||
|
<method name=".ctor" />
|
||||||
|
</type>
|
||||||
|
<type fullname="Bar">
|
||||||
|
<method signature="System.Void .ctor(System.String)" />
|
||||||
|
<field signature="System.String _blah" />
|
||||||
|
</type>
|
||||||
|
<namespace fullname="My.Own.Namespace" />
|
||||||
|
<type fullname="My.Other*" />
|
||||||
|
</assembly>
|
||||||
|
</linker>
|
||||||
|
|
@ -88,8 +88,8 @@
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Markdig" Version="0.17.1" />
|
<PackageReference Include="Markdig" Version="0.17.1" />
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.2.6" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.0.3" />
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="2.2.6" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="2.0.3" />
|
||||||
<PackageReference Include="OnePlat.DiceNotation" Version="2.0.2" />
|
<PackageReference Include="OnePlat.DiceNotation" Version="2.0.2" />
|
||||||
<PackageReference Include="Rg.Plugins.Popup" Version="1.1.5.188" />
|
<PackageReference Include="Rg.Plugins.Popup" Version="1.1.5.188" />
|
||||||
<PackageReference Include="SkiaSharp.Svg" Version="1.60.0" />
|
<PackageReference Include="SkiaSharp.Svg" Version="1.60.0" />
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,7 @@ namespace AideDeJeuLib
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
[Preserve(AllMembers = true)]
|
||||||
[DataContract]
|
[DataContract]
|
||||||
public class Item : IItem //: IList<Item>
|
public class Item : IItem //: IList<Item>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue