keystore setup (now to wait 2 days until google gives me access to my new key)
This commit is contained in:
parent
c9e0ff8ec2
commit
06eb61facd
4 changed files with 16 additions and 2 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -2,4 +2,5 @@ bin/
|
|||
obj/
|
||||
/packages/
|
||||
.idea
|
||||
.vs
|
||||
.vs
|
||||
*.keystore
|
|
@ -9,6 +9,12 @@
|
|||
<PublishTrimmed>false</PublishTrimmed>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
||||
<AndroidKeyStore>True</AndroidKeyStore>
|
||||
<AndroidSigningKeyStore>../TouchyTicketsAndroid.keystore</AndroidSigningKeyStore>
|
||||
<AndroidSigningKeyAlias>TouchyTicketsAndroid</AndroidSigningKeyAlias>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\TouchyTickets\TouchyTickets.csproj"/>
|
||||
|
||||
|
|
7
Publish.bat
Normal file
7
Publish.bat
Normal file
|
@ -0,0 +1,7 @@
|
|||
@echo off
|
||||
cd /D "%~dp0"
|
||||
|
||||
set /p pass=Password?
|
||||
|
||||
dotnet clean -c Release
|
||||
dotnet publish -c Release /p:AndroidSigningKeyPass=%pass% /p:AndroidSigningStorePass=%pass%
|
|
@ -1 +1 @@
|
|||
Subproject commit 4b5fa0c78942872977a5986ab06aae7d18fc32de
|
||||
Subproject commit cc565f8d6990c936ca4b41a4647ef7d8371facd4
|
Loading…
Reference in a new issue