Skip to content

Commit

Permalink
Tester is pubished to repo, and has proper filter
Browse files Browse the repository at this point in the history
  • Loading branch information
wizardmanannan committed Dec 22, 2022
1 parent 0e1f641 commit 9bc5c0a
Show file tree
Hide file tree
Showing 10 changed files with 88 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
/tools/*/.vs
/obj/cx16
AGI.CX16.*
*.user
*.user
*.pdb
Binary file added Newtonsoft.Json.dll
Binary file not shown.
42 changes: 42 additions & 0 deletions Tester.deps.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0/win-x86",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {},
".NETCoreApp,Version=v6.0/win-x86": {
"Tester/1.0.0": {
"dependencies": {
"Newtonsoft.Json": "13.0.2"
},
"runtime": {
"Tester.dll": {}
}
},
"Newtonsoft.Json/13.0.2": {
"runtime": {
"lib/net6.0/Newtonsoft.Json.dll": {
"assemblyVersion": "13.0.0.0",
"fileVersion": "13.0.2.27524"
}
}
}
}
},
"libraries": {
"Tester/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Newtonsoft.Json/13.0.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-R2pZ3B0UjeyHShm9vG+Tu0EBb2lC8b0dFzV9gVn50ofHXh9Smjk6kTn7A/FdAsC8B5cKib1OnGYOXxRBz5XQDg==",
"path": "newtonsoft.json/13.0.2",
"hashPath": "newtonsoft.json.13.0.2.nupkg.sha512"
}
}
}
Binary file added Tester.dll
Binary file not shown.
Binary file added Tester.exe
Binary file not shown.
18 changes: 18 additions & 0 deletions Tester.runtimeconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "6.0.0"
}
],
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
}
}
}
1 change: 1 addition & 0 deletions cx16TesterConfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"SdCardImageLocation":"C:\\Commander\\sdcard.img","SdCardMountDriveLetter":"E","Cx16EmulatatorFolder":"C:\\Commander","MakeFileFolder":"C:\\Commander"}
14 changes: 7 additions & 7 deletions test.bat
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
cd %4
make
OSFMount -a -t file -f "C:\Commander\sdcard.img" -o rw -m E:
copy agi.cx16* "E:"
copy agi.cx16* "C:\Commander"
OSFMount -a -t file -f %1 -o rw -m %2:
copy agi.cx16* %2:
copy agi.cx16* %3
rename agi.cx16* AGI.CX16*
timeout 3
OSFMount -D -m E:
OSFMount -D -m %2:
cd C:\Commander\
x16emu.exe -sdcard "sdcard.img" -prg "agi.cx16" -run -debug d -warp
cd C:\meka\CommanderX16Version\

x16emu.exe -sdcard %~n1%~x1 -prg "agi.cx16" -run -debug d -warp
cd %4
17 changes: 17 additions & 0 deletions tools/TesterTool/Properties/PublishProfiles/FolderProfile.pubxml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>C:\meka\CommanderX16Repo\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<TargetFramework>net6.0-windows</TargetFramework>
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
<SelfContained>false</SelfContained>
<PublishSingleFile>false</PublishSingleFile>
<PublishReadyToRun>false</PublishReadyToRun>
</PropertyGroup>
</Project>
1 change: 1 addition & 0 deletions tools/TesterTool/Tester.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9bc5c0a

Please sign in to comment.