osx-x64
This commit is contained in:
parent
501bb68005
commit
e270564d17
BIN
@dnscrypt-proxy/osx-x64/dnscrypt-proxy
Normal file
BIN
@dnscrypt-proxy/osx-x64/dnscrypt-proxy
Normal file
Binary file not shown.
@ -25,4 +25,10 @@
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="'$(RuntimeIdentifier)' == 'osx-x64'">
|
||||
<None Include="../@dnscrypt-proxy/osx-x64/dnscrypt-proxy" Link="dnscrypt-proxy" >
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@ -1,10 +1,15 @@
|
||||
#! /bin/bash
|
||||
cd ./bin/publish
|
||||
|
||||
# linux
|
||||
# linux-x64
|
||||
chmod 777 ./linux-x64/dnscrypt-proxy
|
||||
chmod 777 ./linux-x64/FastGithub
|
||||
zip -r linux-x64.zip linux-x64
|
||||
|
||||
# windows
|
||||
# osx-x64
|
||||
chmod 777 ./osx-x64/dnscrypt-proxy
|
||||
chmod 777 ./osx-x64/FastGithub
|
||||
zip -r osx-x64.zip osx-x64
|
||||
|
||||
# windows-x64
|
||||
zip -r win-x64.zip win-x64 -x "./win-x64/aspnetcorev2_inprocess.dll"
|
||||
@ -1,4 +1,5 @@
|
||||
set output=./bin/publish
|
||||
if exist "%output%" rd /S /Q "%output%"
|
||||
dotnet publish -c Release /p:PublishSingleFile=true /p:PublishTrimmed=true -r win-x64 -o "%output%/win-x64"
|
||||
dotnet publish -c Release /p:PublishSingleFile=true /p:PublishTrimmed=true -r linux-x64 -o "%output%/linux-x64"
|
||||
dotnet publish -c Release /p:PublishSingleFile=true /p:PublishTrimmed=true -r linux-x64 -o "%output%/linux-x64"
|
||||
dotnet publish -c Release /p:PublishSingleFile=true /p:PublishTrimmed=true -r osx-x64 -o "%output%/osx-x64"
|
||||
Loading…
Reference in New Issue
Block a user