
    e%
                    F    d dl mZ d dlmZ dZdZdZdZdZ G d d	e      Z	y
)    )annotations)	ClassImpla  using System;

public class {class_name} {{
    const String PROJECT_NAME = "{project_name}";

    static int Main(String[] args) {{
      if (args.Length > 0) {{
          System.Console.WriteLine(String.Format("{project_name} takes no arguments.."));
          return 1;
      }}
      Console.WriteLine(String.Format("This is project {{0}}.", PROJECT_NAME));
      return 0;
    }}
}}

zproject('{project_name}', 'cs',
  version : '{version}',
  default_options : ['warning_level=3'])

exe = executable('{exe_name}', '{source_name}',
  install : true)

test('basic', exe)
z
public class {class_name} {{
    private const int number = 6;

    public int get_number() {{
      return number;
    }}
}}

a_  using System;

public class {class_test} {{
    static int Main(String[] args) {{
      if (args.Length > 0) {{
          System.Console.WriteLine("{project_name} takes no arguments..");
          return 1;
      }}
      {class_name} c = new {class_name}();
      Boolean result = true;
      return result.CompareTo(c.get_number() != 6);
    }}
}}

a  project('{project_name}', 'cs',
  version : '{version}',
  default_options : ['warning_level=3'])

stlib = shared_library('{lib_name}', '{source_file}',
  install : true,
)

test_exe = executable('{test_exe_name}', '{test_source_file}',
  link_with : stlib)
test('{test_name}', test_exe)

# Make this library usable as a Meson subproject.
{ltoken}_dep = declare_dependency(
  include_directories: include_directories('.'),
  link_with : stlib)

c                  $    e Zd ZdZeZeZeZ	e
ZeZy)CSharpProjectcsN)__name__
__module____qualname__
source_exthello_cs_templateexe_templatehello_cs_meson_templateexe_meson_templatelib_cs_templatelib_templatelib_cs_test_templatelib_test_templatelib_cs_meson_templatelib_meson_template     B/usr/lib/python3/dist-packages/mesonbuild/templates/cstemplates.pyr   r   ]   s#    J$L0"L,.r   r   N)

__future__r   mesonbuild.templates.sampleimplr   r   r   r   r   r   r   r   r   r   <module>r      s@    # 5 " 	   (/I /r   