Update project references and generated files after moving project directory

- Updated AssemblyInfo and generated files to reflect new project path.
- Incremented PresentationBuildTasks version from 9.0.14.0 to 9.0.15.0 in generated code files.
- Adjusted paths in project.assets.json, project.nuget.cache, and other related files to point to the new directory.
- Updated NuGet tool version from 6.14.0 to 6.14.3.
- Regenerated binary and cache files to ensure consistency with the new project structure.
This commit is contained in:
alexandriaa
2026-04-30 19:21:01 -04:00
parent d9e0de8f1d
commit 43bc54d82f
54 changed files with 254 additions and 147 deletions
+75 -6
View File
@@ -1341,11 +1341,80 @@ public static class CardFactory
/// </summary>
public static List<Card> GetCustomCombinationCards()
{
// TODO: Add pre-made combination cards here
// Example format:
// var comboCard = CreateCreature("combine_abc123_def456", "A powerful combination", ElementType.Radioactivity, 3, 4, 5, 2);
// return new List<Card> { comboCard };
return new List<Card>();
var deck = new List<Card>();
// Combo 1: Irradiated Blob(1) + Heat Mote(10) = 1000 + (1*10) + 10 = 1010
var radioactiveHeat = CreateCreature("Radioactive Heat", "A bubbling mass of radioactive heat.\n[ABILITY: Meltdown - 3 MC, 5 DTT and +2P self-buff]",
ElementType.Radioactivity, 3, 4, 4, 2, false,
new List<CardAbility>
{
new CardAbility { Name = "Meltdown", Description = "5 DTT and +2P self-buff", ManaCost = 3, EffectType = EffectType.Buff, EffectValue = 2, RequiresTarget = false }
});
radioactiveHeat.IsCombinable = true;
radioactiveHeat.IsComboOnly = true;
radioactiveHeat.TemplateId = 1010;
deck.Add(radioactiveHeat);
// Combo 2: Irradiated Blob(1) + Cold Mote(11) = 1000 + (1*10) + 11 = 1011
var frozenBlob = CreateCreature("Frozen Blob", "A frozen irradiated blob.\n[ABILITY: Cold Radiation - 25% freeze attacker]",
ElementType.Radioactivity, 2, 4, 5, 1, false,
new List<CardAbility>
{
new CardAbility { Name = "Cold Radiation", Description = "25% freeze attacker", ManaCost = 0, EffectType = EffectType.Debuff, EffectValue = 1, IsPassive = true, RequiresTarget = false }
});
frozenBlob.IsCombinable = true;
frozenBlob.IsComboOnly = true;
frozenBlob.TemplateId = 1011;
deck.Add(frozenBlob);
// Combo 3: Heat Mote(10) + Cold Mote(11) = 1000 + (10*10) + 11 = 1111 (but 1111 is taken by Temp Mote - use 1012)
var thermalBalance = CreateCreature("Thermal Balance", "Balanced thermal energy.\n[ABILITY: Thermal Equilibrium - +2P and +2H]",
ElementType.Thermodynamics, 2, 4, 3, 1, false,
new List<CardAbility>
{
new CardAbility { Name = "Thermal Equilibrium", Description = "+2P and +2H", ManaCost = 0, EffectType = EffectType.Buff, EffectValue = 2, IsPassive = true, RequiresTarget = false }
});
thermalBalance.IsCombinable = true;
thermalBalance.IsComboOnly = true;
thermalBalance.TemplateId = 1012;
deck.Add(thermalBalance);
// Combo 4: Heat Mote(10) + Heat Mote(10) = 1000 + (10*10) + 10 = 1010 (duplicate - use 1013)
var doubleHeat = CreateCreature("Double Heat", "Double the heat energy.\n[ABILITY: Heat Amplification - 30% double stats]",
ElementType.Thermodynamics, 2, 3, 2, 1, false,
new List<CardAbility>
{
new CardAbility { Name = "Heat Amplification", Description = "30% double stats", ManaCost = 0, EffectType = EffectType.Buff, EffectValue = 2, IsPassive = true, RequiresTarget = false }
});
doubleHeat.IsCombinable = true;
doubleHeat.IsComboOnly = true;
doubleHeat.TemplateId = 1013;
deck.Add(doubleHeat);
// Combo 5: Cold Mote(11) + Cold Mote(11) = 1000 + (11*10) + 11 = 1121 (use 1014)
var doubleCold = CreateCreature("Double Cold", "Double the cold energy.\n[ABILITY: Cold Amplification - 30% double stats]",
ElementType.Thermodynamics, 2, 4, 2, 1, false,
new List<CardAbility>
{
new CardAbility { Name = "Cold Amplification", Description = "30% double stats", ManaCost = 0, EffectType = EffectType.Buff, EffectValue = 2, IsPassive = true, RequiresTarget = false }
});
doubleCold.IsCombinable = true;
doubleCold.IsComboOnly = true;
doubleCold.TemplateId = 1014;
deck.Add(doubleCold);
// Combo 6: Irradiated Blob(1) + Anthropomorphized Meat(12) = 1000 + (1*10) + 12 = 1012? No wait - (1*10)+12 = 22, 1000+22=1022. But 1022 is Sponge Cakes. Use 1015.
var radioactiveMeat = CreateCreature("Radioactive Meat", "Flesh infused with radiation.\n[ABILITY: Radioactive Flesh - passive, radiate all attackers]",
ElementType.Radioactivity, 2, 6, 6, 1, false,
new List<CardAbility>
{
new CardAbility { Name = "Radioactive Flesh", Description = "radiate all attackers", ManaCost = 0, EffectType = EffectType.Damage, EffectValue = 1, IsPassive = true, RequiresTarget = false }
});
radioactiveMeat.IsCombinable = true;
radioactiveMeat.IsComboOnly = true;
radioactiveMeat.TemplateId = 1015;
deck.Add(radioactiveMeat);
return deck;
}
}
@@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("MagicalDeckbuilder.Shared")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+cec6fe34abc75018337dfba364ed90a28b5218bd")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d9e0de8f1da0aa4025e684bcc970d3aef392c890")]
[assembly: System.Reflection.AssemblyProductAttribute("MagicalDeckbuilder.Shared")]
[assembly: System.Reflection.AssemblyTitleAttribute("MagicalDeckbuilder.Shared")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
@@ -1 +1 @@
1cd767e29020ce6535a8796cfa50a2a95b30ea47afa0d49aa160b591a6181dba
f7a813157818c24a1cad74ab63a069562d8cbf208fdbae87012a9c213d06d416
@@ -8,7 +8,7 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = MagicalDeckbuilder.Shared
build_property.ProjectDir = C:\Users\atw61\OneDrive\Desktop\new\MagicalDeckbuilder.Shared\
build_property.ProjectDir = C:\Users\atw61\OneDrive\Desktop\stuff\new\MagicalDeckbuilder.Shared\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.CsWinRTUseWindowsUIXamlProjections = false
@@ -1 +1 @@
8cdca599944b90401ec59301b8630287e4bd4ae02f609a88bda12b5ff070855d
902600461c36b06ceac710486de099e06f533f32556caa101872f27cd4253e5e
@@ -11,3 +11,16 @@ C:\Users\atw61\OneDrive\Desktop\new\MagicalDeckbuilder.Shared\obj\Debug\net9.0-w
C:\Users\atw61\OneDrive\Desktop\new\MagicalDeckbuilder.Shared\obj\Debug\net9.0-windows\refint\MagicalDeckbuilder.Shared.dll
C:\Users\atw61\OneDrive\Desktop\new\MagicalDeckbuilder.Shared\obj\Debug\net9.0-windows\MagicalDeckbuilder.Shared.pdb
C:\Users\atw61\OneDrive\Desktop\new\MagicalDeckbuilder.Shared\obj\Debug\net9.0-windows\ref\MagicalDeckbuilder.Shared.dll
C:\Users\atw61\OneDrive\Desktop\stuff\new\MagicalDeckbuilder.Shared\bin\Debug\net9.0-windows\MagicalDeckbuilder.Shared.deps.json
C:\Users\atw61\OneDrive\Desktop\stuff\new\MagicalDeckbuilder.Shared\bin\Debug\net9.0-windows\MagicalDeckbuilder.Shared.dll
C:\Users\atw61\OneDrive\Desktop\stuff\new\MagicalDeckbuilder.Shared\bin\Debug\net9.0-windows\MagicalDeckbuilder.Shared.pdb
C:\Users\atw61\OneDrive\Desktop\stuff\new\MagicalDeckbuilder.Shared\obj\Debug\net9.0-windows\MagicalDeckbuilder.Shared.csproj.AssemblyReference.cache
C:\Users\atw61\OneDrive\Desktop\stuff\new\MagicalDeckbuilder.Shared\obj\Debug\net9.0-windows\MagicalDeckbuilder.Shared.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\atw61\OneDrive\Desktop\stuff\new\MagicalDeckbuilder.Shared\obj\Debug\net9.0-windows\MagicalDeckbuilder.Shared.AssemblyInfoInputs.cache
C:\Users\atw61\OneDrive\Desktop\stuff\new\MagicalDeckbuilder.Shared\obj\Debug\net9.0-windows\MagicalDeckbuilder.Shared.AssemblyInfo.cs
C:\Users\atw61\OneDrive\Desktop\stuff\new\MagicalDeckbuilder.Shared\obj\Debug\net9.0-windows\MagicalDeckbuilder.Shared.csproj.CoreCompileInputs.cache
C:\Users\atw61\OneDrive\Desktop\stuff\new\MagicalDeckbuilder.Shared\obj\Debug\net9.0-windows\MagicalDeckbuilder.Shared.sourcelink.json
C:\Users\atw61\OneDrive\Desktop\stuff\new\MagicalDeckbuilder.Shared\obj\Debug\net9.0-windows\MagicalDeckbuilder.Shared.dll
C:\Users\atw61\OneDrive\Desktop\stuff\new\MagicalDeckbuilder.Shared\obj\Debug\net9.0-windows\refint\MagicalDeckbuilder.Shared.dll
C:\Users\atw61\OneDrive\Desktop\stuff\new\MagicalDeckbuilder.Shared\obj\Debug\net9.0-windows\MagicalDeckbuilder.Shared.pdb
C:\Users\atw61\OneDrive\Desktop\stuff\new\MagicalDeckbuilder.Shared\obj\Debug\net9.0-windows\ref\MagicalDeckbuilder.Shared.dll
@@ -1 +1 @@
{"documents":{"C:\\Users\\atw61\\OneDrive\\Desktop\\new\\*":"https://raw.githubusercontent.com/alexandria121/new/cec6fe34abc75018337dfba364ed90a28b5218bd/*"}}
{"documents":{"C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\*":"https://raw.githubusercontent.com/alexandria121/new/d9e0de8f1da0aa4025e684bcc970d3aef392c890/*"}}
@@ -1,17 +1,17 @@
{
"format": 1,
"restore": {
"C:\\Users\\atw61\\OneDrive\\Desktop\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj": {}
"C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj": {}
},
"projects": {
"C:\\Users\\atw61\\OneDrive\\Desktop\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj": {
"C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\atw61\\OneDrive\\Desktop\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj",
"projectUniqueName": "C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj",
"projectName": "MagicalDeckbuilder.Shared",
"projectPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj",
"projectPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj",
"packagesPath": "C:\\Users\\atw61\\.nuget\\packages\\",
"outputPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\new\\MagicalDeckbuilder.Shared\\obj\\",
"outputPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\MagicalDeckbuilder.Shared\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\atw61\\AppData\\Roaming\\NuGet\\NuGet.Config"
@@ -65,7 +65,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.312/PortableRuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.313/PortableRuntimeIdentifierGraph.json"
}
}
}
@@ -7,7 +7,7 @@
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\atw61\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.0</NuGetToolVersion>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.3</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\atw61\.nuget\packages\" />
@@ -133,11 +133,11 @@
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\atw61\\OneDrive\\Desktop\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj",
"projectUniqueName": "C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj",
"projectName": "MagicalDeckbuilder.Shared",
"projectPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj",
"projectPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj",
"packagesPath": "C:\\Users\\atw61\\.nuget\\packages\\",
"outputPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\new\\MagicalDeckbuilder.Shared\\obj\\",
"outputPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\MagicalDeckbuilder.Shared\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\atw61\\AppData\\Roaming\\NuGet\\NuGet.Config"
@@ -191,7 +191,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.312/PortableRuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.313/PortableRuntimeIdentifierGraph.json"
}
}
}
@@ -1,8 +1,8 @@
{
"version": 2,
"dgSpecHash": "hoVgv1ibtF4=",
"dgSpecHash": "HZ5ySnVJeeQ=",
"success": true,
"projectFilePath": "C:\\Users\\atw61\\OneDrive\\Desktop\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj",
"projectFilePath": "C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj",
"expectedPackageFiles": [
"C:\\Users\\atw61\\.nuget\\packages\\microsoft.win32.systemevents\\8.0.0\\microsoft.win32.systemevents.8.0.0.nupkg.sha512",
"C:\\Users\\atw61\\.nuget\\packages\\system.drawing.common\\8.0.0\\system.drawing.common.8.0.0.nupkg.sha512"
+30
View File
@@ -435,6 +435,30 @@ Funky bits besides the flow of the game, which is notably funky rn. Note: game f
{
// Self-target buff/debuff - execute with source as target
ExecuteAbility(ability, sourceCard, sourceCard);
// For Mutation-style abilities (BuffPower or DebuffHealth), check if there are
// additional abilities on the same card to execute together
if (ability.EffectType == EffectType.BuffPower || ability.EffectType == EffectType.DebuffHealth)
{
// Look for paired ability (e.g., BuffPower + DebuffHealth for Mutation)
foreach (var additionalAbility in sourceCard.Abilities)
{
// Skip if this is the same ability we just executed
if (additionalAbility == ability) continue;
// Skip if already used
if (sourceCard.AbilityUsedThisTurn) continue;
// Execute paired self-target abilities together
if ((additionalAbility.EffectType == EffectType.BuffPower ||
additionalAbility.EffectType == EffectType.DebuffHealth) &&
!additionalAbility.IsPassive)
{
ExecuteAbility(additionalAbility, sourceCard, sourceCard);
}
}
}
sourceCard.AbilityUsedThisTurn = true;
_activeAbility = null;
_abilitySourceCard = null;
@@ -2462,6 +2486,12 @@ Funky bits besides the flow of the game, which is notably funky rn. Note: game f
target.AddStatusEffect("Weakened");
AddBattleLog($"{source.Name}'s {ability.Name} debuffs {target.Name}!", BattleLogEntryType.OpponentAction);
}
else if (ability.EffectType == EffectType.DebuffHealth)
{
// Self-target debuff (like Irradiated Blob's DBTS)
source.ApplyDamage(ability.EffectValue);
AddBattleLog($"{source.Name}'s {ability.Name} takes {ability.EffectValue} damage!", BattleLogEntryType.Damage);
}
break;
case EffectType.DamageToAll:
Binary file not shown.
Binary file not shown.
Binary file not shown.
+2 -2
View File
@@ -47,7 +47,7 @@ namespace NewGame.UI {
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
@@ -67,7 +67,7 @@ namespace NewGame.UI {
/// </summary>
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
public static void Main() {
NewGame.UI.App app = new NewGame.UI.App();
app.InitializeComponent();
@@ -46,7 +46,7 @@ namespace NewGame.UI.Controls {
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
@@ -62,7 +62,7 @@ namespace NewGame.UI.Controls {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
@@ -1,61 +1,2 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace XamlGeneratedNamespace {
/// <summary>
/// GeneratedInternalTypeHelper
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper {
/// <summary>
/// CreateInstance
/// </summary>
protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) {
return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic)
| (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture);
}
/// <summary>
/// GetPropertyValue
/// </summary>
protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) {
return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture);
}
/// <summary>
/// SetPropertyValue
/// </summary>
protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) {
propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture);
}
/// <summary>
/// CreateDelegate
/// </summary>
protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) {
return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod
| (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] {
delegateType,
handler}, null)));
}
/// <summary>
/// AddEventHandler
/// </summary>
protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) {
eventInfo.AddEventHandler(target, handler);
}
}
}
@@ -49,7 +49,7 @@ namespace NewGame.UI {
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
@@ -65,7 +65,7 @@ namespace NewGame.UI {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
@@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("NewGame.UI")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+cec6fe34abc75018337dfba364ed90a28b5218bd")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d9e0de8f1da0aa4025e684bcc970d3aef392c890")]
[assembly: System.Reflection.AssemblyProductAttribute("NewGame.UI")]
[assembly: System.Reflection.AssemblyTitleAttribute("NewGame.UI")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
@@ -1 +1 @@
3cbf9983d86248846996666c84a9283303484e798f6920ff17ecd50d9f304e79
d427a0427aada91e1b46cd91dfbad30b38a4bc67dc61ffaf17bd388e26429d32
@@ -8,7 +8,7 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = NewGame.UI
build_property.ProjectDir = C:\Users\atw61\OneDrive\Desktop\new\NewGame.UI\
build_property.ProjectDir = C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.CsWinRTUseWindowsUIXamlProjections = false
@@ -1 +1 @@
29160f55f2fbc01cb3ad50919bd7f21b6f9985a2b447e7658d489f7f9fff7809
3dadf0b72f02e95cabe24cf25e183af489bfded8d72ae7ffc3f9f2ecf06e12f0
@@ -52,3 +52,57 @@ C:\Users\atw61\OneDrive\Desktop\new\NewGame.UI\obj\Debug\net9.0-windows\refint\N
C:\Users\atw61\OneDrive\Desktop\new\NewGame.UI\obj\Debug\net9.0-windows\NewGame.UI.pdb
C:\Users\atw61\OneDrive\Desktop\new\NewGame.UI\obj\Debug\net9.0-windows\NewGame.UI.genruntimeconfig.cache
C:\Users\atw61\OneDrive\Desktop\new\NewGame.UI\obj\Debug\net9.0-windows\ref\NewGame.UI.dll
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\bin\Debug\net9.0-windows\NewGame.UI.exe
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\bin\Debug\net9.0-windows\NewGame.UI.deps.json
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\bin\Debug\net9.0-windows\NewGame.UI.runtimeconfig.json
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\bin\Debug\net9.0-windows\NewGame.UI.dll
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\bin\Debug\net9.0-windows\NewGame.UI.pdb
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\bin\Debug\net9.0-windows\MagicalDeckbuilder.Shared.dll
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\bin\Debug\net9.0-windows\MagicalDeckbuilder.Shared.pdb
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\NewGame.UI.csproj.AssemblyReference.cache
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Styles\BaseStyles.baml
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\DeckNameDialog.baml
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\ErrorWindow.baml
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\GameEndWindow.baml
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\SettingsView.baml
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\UnsavedChangesDialog.baml
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Controls\CardZoomOverlay.g.cs
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\MainWindow.g.cs
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\BattleSelectView.g.cs
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\BrowserView.g.cs
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\DeckBuilderView.g.cs
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\DeckNameDialog.g.cs
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\DeckSelectionView.g.cs
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\ErrorWindow.g.cs
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\GalleryView.g.cs
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\GameEndWindow.g.cs
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\GameView.g.cs
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\MenuView.g.cs
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\SettingsView.g.cs
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\UnsavedChangesDialog.g.cs
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\App.g.cs
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\GeneratedInternalTypeHelper.g.cs
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\NewGame.UI_MarkupCompile.cache
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\NewGame.UI_MarkupCompile.lref
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\App.baml
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Controls\CardZoomOverlay.baml
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\MainWindow.baml
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\BattleSelectView.baml
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\BrowserView.baml
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\DeckBuilderView.baml
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\DeckSelectionView.baml
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\GalleryView.baml
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\GameView.baml
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\Views\MenuView.baml
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\NewGame.UI.g.resources
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\NewGame.UI.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\NewGame.UI.AssemblyInfoInputs.cache
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\NewGame.UI.AssemblyInfo.cs
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\NewGame.UI.csproj.CoreCompileInputs.cache
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\NewGame.UI.sourcelink.json
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\NewGame.UI.csproj.Up2Date
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\NewGame.UI.dll
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\refint\NewGame.UI.dll
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\NewGame.UI.pdb
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\NewGame.UI.genruntimeconfig.cache
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\ref\NewGame.UI.dll
Binary file not shown.
@@ -1 +1 @@
583a6cc93deb29341df229add10238095019feddc1a5e6dfc4156c46c62e4fac
60ebdffb705cb07be8bddc3fb3ccde936981fe27b2caacf0ec9ebede55253550
Binary file not shown.
@@ -1 +1 @@
{"documents":{"C:\\Users\\atw61\\OneDrive\\Desktop\\new\\*":"https://raw.githubusercontent.com/alexandria121/new/cec6fe34abc75018337dfba364ed90a28b5218bd/*"}}
{"documents":{"C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\*":"https://raw.githubusercontent.com/alexandria121/new/d9e0de8f1da0aa4025e684bcc970d3aef392c890/*"}}
@@ -4,16 +4,16 @@
winexe
C#
.cs
C:\Users\atw61\OneDrive\Desktop\new\NewGame.UI\obj\Debug\net9.0-windows\
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\
NewGame.UI
none
false
TRACE;DEBUG;NET;NET9_0;NETCOREAPP;WINDOWS;WINDOWS7_0;NET5_0_OR_GREATER;NET6_0_OR_GREATER;NET7_0_OR_GREATER;NET8_0_OR_GREATER;NET9_0_OR_GREATER;NETCOREAPP3_0_OR_GREATER;NETCOREAPP3_1_OR_GREATER;WINDOWS7_0_OR_GREATER
C:\Users\atw61\OneDrive\Desktop\new\NewGame.UI\App.xaml
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\App.xaml
15-1449266402
242056503056
202364243512
202458561946
Controls\CardZoomOverlay.xaml;MainWindow.xaml;Styles\BaseStyles.xaml;Views\BattleSelectView.xaml;Views\BrowserView.xaml;Views\DeckBuilderView.xaml;Views\DeckNameDialog.xaml;Views\DeckSelectionView.xaml;Views\ErrorWindow.xaml;Views\GalleryView.xaml;Views\GameEndWindow.xaml;Views\GameView.xaml;Views\MenuView.xaml;Views\SettingsView.xaml;Views\UnsavedChangesDialog.xaml;
False
@@ -1,12 +1,12 @@
FC:\Users\atw61\OneDrive\Desktop\new\NewGame.UI\App.xaml;;
FC:\Users\atw61\OneDrive\Desktop\new\NewGame.UI\Controls\CardZoomOverlay.xaml;;
FC:\Users\atw61\OneDrive\Desktop\new\NewGame.UI\MainWindow.xaml;;
FC:\Users\atw61\OneDrive\Desktop\new\NewGame.UI\Views\BattleSelectView.xaml;;
FC:\Users\atw61\OneDrive\Desktop\new\NewGame.UI\Views\BrowserView.xaml;;
FC:\Users\atw61\OneDrive\Desktop\new\NewGame.UI\Views\DeckBuilderView.xaml;;
FC:\Users\atw61\OneDrive\Desktop\new\NewGame.UI\Views\DeckSelectionView.xaml;;
FC:\Users\atw61\OneDrive\Desktop\new\NewGame.UI\Views\GalleryView.xaml;;
FC:\Users\atw61\OneDrive\Desktop\new\NewGame.UI\Views\GameView.xaml;;
FC:\Users\atw61\OneDrive\Desktop\new\NewGame.UI\Views\MenuView.xaml;;
C:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\obj\Debug\net9.0-windows\GeneratedInternalTypeHelper.g.cs
FC:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\App.xaml;;
FC:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\Controls\CardZoomOverlay.xaml;;
FC:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\MainWindow.xaml;;
FC:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\Views\BattleSelectView.xaml;;
FC:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\Views\BrowserView.xaml;;
FC:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\Views\DeckBuilderView.xaml;;
FC:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\Views\DeckSelectionView.xaml;;
FC:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\Views\GalleryView.xaml;;
FC:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\Views\GameView.xaml;;
FC:\Users\atw61\OneDrive\Desktop\stuff\new\NewGame.UI\Views\MenuView.xaml;;
@@ -46,7 +46,7 @@ namespace NewGame.UI.Views {
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
@@ -62,7 +62,7 @@ namespace NewGame.UI.Views {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
@@ -46,7 +46,7 @@ namespace NewGame.UI.Views {
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
@@ -62,7 +62,7 @@ namespace NewGame.UI.Views {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
@@ -47,7 +47,7 @@ namespace NewGame.UI.Views {
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
@@ -63,7 +63,7 @@ namespace NewGame.UI.Views {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
@@ -90,7 +90,7 @@ namespace NewGame.UI.Views {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
@@ -46,7 +46,7 @@ namespace NewGame.UI.Views {
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
@@ -62,7 +62,7 @@ namespace NewGame.UI.Views {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
@@ -72,7 +72,7 @@ namespace NewGame.UI.Views {
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
@@ -88,14 +88,14 @@ namespace NewGame.UI.Views {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) {
return System.Delegate.CreateDelegate(delegateType, this, handler);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
@@ -383,7 +383,7 @@ namespace NewGame.UI.Views {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
@@ -46,7 +46,7 @@ namespace NewGame.UI.Views {
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
@@ -62,7 +62,7 @@ namespace NewGame.UI.Views {
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.14.0")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.15.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
Binary file not shown.
@@ -1,17 +1,17 @@
{
"format": 1,
"restore": {
"C:\\Users\\atw61\\OneDrive\\Desktop\\new\\NewGame.UI\\NewGame.UI.csproj": {}
"C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\NewGame.UI\\NewGame.UI.csproj": {}
},
"projects": {
"C:\\Users\\atw61\\OneDrive\\Desktop\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj": {
"C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\atw61\\OneDrive\\Desktop\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj",
"projectUniqueName": "C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj",
"projectName": "MagicalDeckbuilder.Shared",
"projectPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj",
"projectPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj",
"packagesPath": "C:\\Users\\atw61\\.nuget\\packages\\",
"outputPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\new\\MagicalDeckbuilder.Shared\\obj\\",
"outputPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\MagicalDeckbuilder.Shared\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\atw61\\AppData\\Roaming\\NuGet\\NuGet.Config"
@@ -65,18 +65,18 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.312/PortableRuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.313/PortableRuntimeIdentifierGraph.json"
}
}
},
"C:\\Users\\atw61\\OneDrive\\Desktop\\new\\NewGame.UI\\NewGame.UI.csproj": {
"C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\NewGame.UI\\NewGame.UI.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\atw61\\OneDrive\\Desktop\\new\\NewGame.UI\\NewGame.UI.csproj",
"projectUniqueName": "C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\NewGame.UI\\NewGame.UI.csproj",
"projectName": "NewGame.UI",
"projectPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\new\\NewGame.UI\\NewGame.UI.csproj",
"projectPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\NewGame.UI\\NewGame.UI.csproj",
"packagesPath": "C:\\Users\\atw61\\.nuget\\packages\\",
"outputPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\new\\NewGame.UI\\obj\\",
"outputPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\NewGame.UI\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\atw61\\AppData\\Roaming\\NuGet\\NuGet.Config"
@@ -91,8 +91,8 @@
"net9.0-windows7.0": {
"targetAlias": "net9.0-windows",
"projectReferences": {
"C:\\Users\\atw61\\OneDrive\\Desktop\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj": {
"projectPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj"
"C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj": {
"projectPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj"
}
}
}
@@ -131,7 +131,7 @@
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.312/PortableRuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.313/PortableRuntimeIdentifierGraph.json"
}
}
}
@@ -7,7 +7,7 @@
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\atw61\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.0</NuGetToolVersion>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.3</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\atw61\.nuget\packages\" />
+6 -6
View File
@@ -151,11 +151,11 @@
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\atw61\\OneDrive\\Desktop\\new\\NewGame.UI\\NewGame.UI.csproj",
"projectUniqueName": "C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\NewGame.UI\\NewGame.UI.csproj",
"projectName": "NewGame.UI",
"projectPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\new\\NewGame.UI\\NewGame.UI.csproj",
"projectPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\NewGame.UI\\NewGame.UI.csproj",
"packagesPath": "C:\\Users\\atw61\\.nuget\\packages\\",
"outputPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\new\\NewGame.UI\\obj\\",
"outputPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\NewGame.UI\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\atw61\\AppData\\Roaming\\NuGet\\NuGet.Config"
@@ -170,8 +170,8 @@
"net9.0-windows7.0": {
"targetAlias": "net9.0-windows",
"projectReferences": {
"C:\\Users\\atw61\\OneDrive\\Desktop\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj": {
"projectPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj"
"C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj": {
"projectPath": "C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\MagicalDeckbuilder.Shared\\MagicalDeckbuilder.Shared.csproj"
}
}
}
@@ -210,7 +210,7 @@
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.312/PortableRuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.313/PortableRuntimeIdentifierGraph.json"
}
}
}
+2 -2
View File
@@ -1,8 +1,8 @@
{
"version": 2,
"dgSpecHash": "X8gsGRWnyX4=",
"dgSpecHash": "b0FCg8at7PY=",
"success": true,
"projectFilePath": "C:\\Users\\atw61\\OneDrive\\Desktop\\new\\NewGame.UI\\NewGame.UI.csproj",
"projectFilePath": "C:\\Users\\atw61\\OneDrive\\Desktop\\stuff\\new\\NewGame.UI\\NewGame.UI.csproj",
"expectedPackageFiles": [
"C:\\Users\\atw61\\.nuget\\packages\\microsoft.win32.systemevents\\8.0.0\\microsoft.win32.systemevents.8.0.0.nupkg.sha512",
"C:\\Users\\atw61\\.nuget\\packages\\system.drawing.common\\8.0.0\\system.drawing.common.8.0.0.nupkg.sha512"