OSS인증 - 팀장 : 서영민 - 팀원 : 김현, 박상진, 박승영, 윤동수, 김성미
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
990 B

4 years ago
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  3. <!-- If system.codedom tag is absent -->
  4. <system.codedom xdt:Transform="InsertIfMissing">
  5. </system.codedom>
  6. <!-- If compilers tag is absent -->
  7. <system.codedom>
  8. <compilers xdt:Transform="InsertIfMissing" />
  9. </system.codedom>
  10. <!-- If a .cs compiler is already present, the existing entry needs to be removed before inserting the new entry -->
  11. <system.codedom>
  12. <compilers>
  13. <compiler
  14. extension=".cs"
  15. xdt:Transform="Remove"
  16. xdt:Locator="Match(extension)" />
  17. </compilers>
  18. </system.codedom>
  19. <!-- If a .vb compiler is already present, the existing entry needs to be removed before inserting the new entry -->
  20. <system.codedom>
  21. <compilers>
  22. <compiler
  23. extension=".vb"
  24. xdt:Transform="Remove"
  25. xdt:Locator="Match(extension)" />
  26. </compilers>
  27. </system.codedom>
  28. </configuration>