13 lines
		
	
	
		
			235 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			235 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
@_show-dir:
 | 
						|
  echo "Current Working Directory:"
 | 
						|
  pwd
 | 
						|
  echo
 | 
						|
 | 
						|
[working-directory: "server"]
 | 
						|
publish: _show-dir
 | 
						|
  dotnet publish --self-contained false -t:PublishAllRids
 | 
						|
 | 
						|
[working-directory: "server"]
 | 
						|
run-server: _show-dir
 | 
						|
  dotnet run
 |