diff --git a/src/AvaloniaCoreRTDemo.csproj b/src/AvaloniaCoreRTDemo.csproj index 1e09e55..0da74cb 100644 --- a/src/AvaloniaCoreRTDemo.csproj +++ b/src/AvaloniaCoreRTDemo.csproj @@ -1,4 +1,4 @@ - + WinExe @@ -36,7 +36,7 @@ - + @@ -50,4 +50,11 @@ PreserveNewest + + + + link + + + diff --git a/test.command b/test.command new file mode 100755 index 0000000..0ad68db --- /dev/null +++ b/test.command @@ -0,0 +1,7 @@ +#!/bin/bash +dir=${0%/*} +if [ -d "$dir" ]; then + cd "$dir" +fi +rm -f src/packages.lock.json +dotnet publish -r osx-x64 -c release /p:RestoreLockedMode=true \ No newline at end of file diff --git a/test.sh b/test.sh new file mode 100644 index 0000000..ee52df7 --- /dev/null +++ b/test.sh @@ -0,0 +1,3 @@ +#!/bin/bash +rm -f src/packages.lock.json +dotnet publish -r linux-x64 -c release /p:RestoreLockedMode=true