disable console in release mode
							parent
							
								
									1dcf99b1f2
								
							
						
					
					
						commit
						5b8d1c6bc7
					
				|  | @ -1,6 +1,7 @@ | ||||||
| <Project Sdk="Microsoft.NET.Sdk"> | <Project Sdk="Microsoft.NET.Sdk"> | ||||||
| 	<PropertyGroup> | 	<PropertyGroup> | ||||||
| 		<OutputType>Exe</OutputType> | 		<OutputType Condition="'$(Configuration)' == 'Debug'">Exe</OutputType> | ||||||
|  | 		<OutputType Condition="'$(Configuration)' == 'Release'">WinExe</OutputType> | ||||||
| 		<TargetFramework>net8.0</TargetFramework> | 		<TargetFramework>net8.0</TargetFramework> | ||||||
| 		<TargetName>ProjectName</TargetName> | 		<TargetName>ProjectName</TargetName> | ||||||
| 		<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | 		<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue