Advertisement
Guest User

stack

a guest
Jun 30th, 2016
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="14.0">
  3. <!-- Specify the inputs by type and file name -->
  4. <PropertyGroup>
  5. <FileUpgradeFlags>
  6. </FileUpgradeFlags>
  7. <UpgradeBackupLocation>
  8. </UpgradeBackupLocation>
  9. <OldToolsVersion>2.0</OldToolsVersion>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <CSFile Include="Program.cs" />
  13. </ItemGroup>
  14. <Target Name="Build">
  15. <!-- Run the Visual C# compilation using input files of type CSFile -->
  16. <CSC Sources="@(CSFile)" DebugType="full" Optimize="no" OutputAssembly="ConsoleApplication.exe">
  17. <!-- Set the OutputAssembly attribute of the CSC task to the name of the executable file that is created -->
  18. <Output TaskParameter="OutputAssembly" ItemName="EXEFile" />
  19. </CSC>
  20. </Target>
  21. </Project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement