Skip to content

Commit 76658bf

Browse files
committed
chore: Update vscode and Rider files trying to let this run there with this also
1 parent 103f4e4 commit 76658bf

File tree

10 files changed

+74
-20
lines changed

10 files changed

+74
-20
lines changed

.gitignore

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,4 +402,44 @@ FodyWeavers.xsd
402402
# Single Target Config
403403
solution-config.props
404404
# Publish Profiles
405-
!**/Properties/PublishProfiles/*.pubxml
405+
!**/Properties/PublishProfiles/*.pubxml
406+
407+
# Ignore common credentials/configuration files
408+
*.secrets.json
409+
*.secret.json
410+
*.env
411+
.env.*
412+
!.env.sample
413+
secrets.json
414+
appsettings.*.json
415+
# As this Repository is meant for Sampling usage, I will include this file. There will not be stored any valid credentials in this!
416+
!appsettings.development.json
417+
usersecrets.json
418+
*.pfx
419+
*.pem
420+
*.key
421+
*.crt
422+
*.cer
423+
*.jks
424+
*.keystore
425+
*.asc
426+
*.gpg
427+
*.pgp
428+
*.enc
429+
*.password
430+
*.passwd
431+
*.credentials
432+
*.config.local
433+
*.config.secret
434+
*.config.secrets
435+
*.vault.json
436+
*.token
437+
*.auth
438+
*.apikey
439+
*.api_key
440+
*.private
441+
*.ssh
442+
*.id_rsa
443+
*.id_dsa
444+
*.id_ecdsa
445+
*.id_ed25519

cSpell.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
// Add file paths to ignore here
2121
"node_modules/**",
2222
"dist/**",
23-
"src/*"
23+
"src/*",
24+
"**.gitignore"
2425
]
25-
}
26+
}
File renamed without changes.
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<component name="ProjectRunConfigurationManager">
2-
<configuration default="false" name="UnoHotDesignApp1 (Desktop)" type="LaunchSettings" factoryName=".NET Launch Settings Profile">
3-
<option name="LAUNCH_PROFILE_PROJECT_FILE_PATH" value="$PROJECT_DIR$/UnoHotDesignApp1/UnoHotDesignApp1.csproj" />
4-
<option name="LAUNCH_PROFILE_TFM" value="net8.0-desktop" />
5-
<option name="LAUNCH_PROFILE_NAME" value="UnoHotDesignApp1 (Desktop)" />
2+
<configuration default="false" name="DevTKSS.Uno.SampleApps.MvuxGallery (Desktop)" type="LaunchSettings" factoryName=".NET Launch Settings Profile">
3+
<option name="LAUNCH_PROFILE_PROJECT_FILE_PATH" value="$PROJECT_DIR$/DevTKSS.Uno.SampleApps.MvuxGallery/DevTKSS.Uno.SampleApps.MvuxGallery.csproj" />
4+
<option name="LAUNCH_PROFILE_TFM" value="net9.0-desktop" />
5+
<option name="LAUNCH_PROFILE_NAME" value="DevTKSS.Uno.SampleApps.MvuxGallery (Desktop)" />
66
<option name="USE_EXTERNAL_CONSOLE" value="0" />
77
<option name="USE_MONO" value="0" />
88
<option name="RUNTIME_ARGUMENTS" value="" />
@@ -14,10 +14,10 @@
1414
<option name="Build" />
1515
</method>
1616
</configuration>
17-
<configuration default="false" name="UnoHotDesignApp1 (WinAppSDK Unpackaged)" type="LaunchSettings" factoryName=".NET Launch Settings Profile">
18-
<option name="LAUNCH_PROFILE_PROJECT_FILE_PATH" value="$PROJECT_DIR$/UnoHotDesignApp1/UnoHotDesignApp1.csproj" />
19-
<option name="LAUNCH_PROFILE_TFM" value="net8.0-windows10.0.26100.0" />
20-
<option name="LAUNCH_PROFILE_NAME" value="UnoHotDesignApp1 (WinAppSDK Unpackaged)" />
17+
<configuration default="false" name="DevTKSS.Uno.SampleApps.MvuxGallery (WinAppSDK Unpackaged)" type="LaunchSettings" factoryName=".NET Launch Settings Profile">
18+
<option name="LAUNCH_PROFILE_PROJECT_FILE_PATH" value="$PROJECT_DIR$/DevTKSS.Uno.SampleApps.MvuxGallery/DevTKSS.Uno.SampleApps.MvuxGallery.csproj" />
19+
<option name="LAUNCH_PROFILE_TFM" value="net9.0-windows10.0.26100.0" />
20+
<option name="LAUNCH_PROFILE_NAME" value="DevTKSS.Uno.SampleApps.MvuxGallery (WinAppSDK Unpackaged)" />
2121
<option name="USE_EXTERNAL_CONSOLE" value="0" />
2222
<option name="USE_MONO" value="0" />
2323
<option name="RUNTIME_ARGUMENTS" value="" />

src/.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"unoplatform.vscode"
4+
],
5+
}
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
"request": "launch",
1414
"preLaunchTask": "build-desktop",
1515
// If you have changed target frameworks, make sure to update the program path.
16-
"program": "${workspaceFolder}/UnoHotDesignApp1/bin/Debug/net8.0-desktop/UnoHotDesignApp1.dll",
16+
"program": "${workspaceFolder}/DevTKSS.Uno.SampleApps.MvuxGallery/bin/Debug/net9.0-desktop/DevTKSS.Uno.SampleApps.MvuxGallery.dll",
1717
"args": [],
18-
"launchSettingsProfile": "UnoHotDesignApp1 (Desktop)",
18+
"launchSettingsProfile": "DevTKSS.Uno.SampleApps.MvuxGallery (Desktop)",
1919
"env": {
2020
"DOTNET_MODIFIABLE_ASSEMBLIES": "debug"
2121
},
22-
"cwd": "${workspaceFolder}/UnoHotDesignApp1",
22+
"cwd": "${workspaceFolder}/DevTKSS.Uno.SampleApps.MvuxGallery",
2323
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
2424
"console": "internalConsole",
2525
"stopAtEntry": false
2626
},
2727
]
28-
}
28+
}
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"type": "process",
88
"args": [
99
"build",
10-
"${workspaceFolder}/UnoHotDesignApp1/UnoHotDesignApp1.csproj",
10+
"${workspaceFolder}/DevTKSS.Uno.SampleApps.MvuxGallery/DevTKSS.Uno.SampleApps.MvuxGallery.csproj",
1111
"/property:GenerateFullPaths=true",
12-
"/property:TargetFramework=net8.0-desktop",
12+
"/property:TargetFramework=net9.0-desktop",
1313
"/consoleloggerparameters:NoSummary"
1414
],
1515
"problemMatcher": "$msCompile"
@@ -20,12 +20,12 @@
2020
"type": "process",
2121
"args": [
2222
"publish",
23-
"${workspaceFolder}/UnoHotDesignApp1/UnoHotDesignApp1.csproj",
23+
"${workspaceFolder}/DevTKSS.Uno.SampleApps.MvuxGallery/DevTKSS.Uno.SampleApps.MvuxGallery.csproj",
2424
"/property:GenerateFullPaths=true",
25-
"/property:TargetFramework=net8.0-desktop",
25+
"/property:TargetFramework=net9.0-desktop",
2626
"/consoleloggerparameters:NoSummary"
2727
],
2828
"problemMatcher": "$msCompile"
2929
}
3030
]
31-
}
31+
}

src/DevTKSS.Uno.Samples.MvuxGallery/DevTKSS.Uno.Samples.MvuxGallery.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,8 @@
5656
<Resource Include="Assets\Samples\*" CopyToOutputDirectory="PreserveNewest" />
5757
<UnoSplashScreen Include="Assets\SplashScreens\*" />
5858
</ItemGroup>
59+
<ItemGroup>
60+
<Folder Include="AppData\" />
61+
</ItemGroup>
5962

6063
</Project>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"AppConfig": {
3+
"Environment": "Development"
4+
}
5+
}

0 commit comments

Comments
 (0)