Also.  Let me see if I'm right in saying this:

Install google cloud sdk.  Done.

After building my aspnetcore app in visual studio, the primary steps needed 
afterwards are:

create an app.yaml file and place it in the same directory as the CSProj 
file.  The contents of the app.yaml file are:
runtime: aspnetcore
env: flex

run the following commands via terminal while in the same directory as the 
CSproj file and the App.yaml file

gcloud app create    
dotnet restore

dotnet publish -c Release
gcloud beta app deploy app.yaml 


How important is the following line?  I'm not sure I ran it.
gcloud app create    


I'm getting a error upon trying to deploy my app, but I don't know how to 
check the logs as it suggests.  ERROR: (gcloud.beta.app.deploy) Error 
Response: [2] Build failed; check build logs for details



On Friday, June 9, 2017 at 1:49:22 PM UTC-4, Jordan (Cloud Platform 
Support) wrote:
>
> You can deploy any custom runtime 
> <https://cloud.google.com/appengine/docs/flexible/custom-runtimes/build> 
> to the App Engine Flexible environment using a Dockerfile. It is 
> recommended that you first start with the provided Quickstart Guide  
> <https://cloud.google.com/appengine/docs/flexible/dotnet/quickstart>to 
> running a C# project on App Engine. Once you have a working project, you 
> can then add in your own C# application code.  
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/b0006236-736b-4997-aaab-d64eeb43059a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to