Home
last modified time | relevance | path

Searched refs:OutputAssembly (Results 1 – 25 of 150) sorted by relevance

123456

/dports/devel/msbuild/msbuild-0.06/mono/facades/
H A Dbuild.proj6 <OutputAssembly>%(Identity).%(Version).dll</OutputAssembly>
13 <OutputAssembly>%(Identity).%(Version).dll</OutputAssembly>
20 <OutputAssembly>%(Identity).%(Version).dll</OutputAssembly>
27 <OutputAssembly>%(Identity).%(Version).dll</OutputAssembly>
34 Outputs="$(OutDir)\%(Facades.OutputAssembly)">
45 OutputAssembly="$(OutDir)\%(Facades.OutputAssembly)"
53 <Exec Command="sn -R $(OutDir)\%(Facades.OutputAssembly) mono.snk" />
/dports/devel/msbuild/msbuild-0.06/src/Tasks.UnitTests/
H A DAxImp_Tests.cs94 public void OutputAssembly() in OutputAssembly() method in Microsoft.Build.UnitTests.AxTlbImp_Tests.AxImp_Tests
99 Assert.Null(t.OutputAssembly); // "OutputAssembly should be null by default" in OutputAssembly()
105 t.OutputAssembly = testParameterValue; in OutputAssembly()
106 … Assert.Equal(testParameterValue, t.OutputAssembly); // "New OutputAssembly value should be set" in OutputAssembly()
122 Assert.Null(t.OutputAssembly); // "OutputAssembly should be null by default" in OutputAssemblyWithSpaces()
128 t.OutputAssembly = testParameterValue; in OutputAssemblyWithSpaces()
129 … Assert.Equal(testParameterValue, t.OutputAssembly); // "New OutputAssembly value should be set" in OutputAssemblyWithSpaces()
H A DTlbImp_Tests.cs159 public void OutputAssembly() in OutputAssembly() method in Microsoft.Build.UnitTests.AxTlbImp_Tests.TlbImp_Tests
164 Assert.Null(t.OutputAssembly); // "OutputAssembly should be null by default" in OutputAssembly()
170 t.OutputAssembly = testParameterValue; in OutputAssembly()
171 … Assert.Equal(testParameterValue, t.OutputAssembly); // "New OutputAssembly value should be set" in OutputAssembly()
187 Assert.Null(t.OutputAssembly); // "OutputAssembly should be null by default" in OutputAssemblyWithSpaces()
193 t.OutputAssembly = testParameterValue; in OutputAssemblyWithSpaces()
194 … Assert.Equal(testParameterValue, t.OutputAssembly); // "New OutputAssembly value should be set" in OutputAssemblyWithSpaces()
H A DAl_Tests.cs349 public void OutputAssembly() in OutputAssembly() method in Microsoft.Build.UnitTests.AlTests
353 Assert.Null(t.OutputAssembly); // "Default value" in OutputAssembly()
354 t.OutputAssembly = new TaskItem("foo.dll"); in OutputAssembly()
355 Assert.Equal("foo.dll", t.OutputAssembly.ItemSpec); // "New value" in OutputAssembly()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Microsoft.VisualBasic/
H A DVBCodeGenerator.cs115 using (FileStream fs = File.OpenRead (options.OutputAssembly)) { in FromFileBatch()
122 results.CompiledAssembly = Assembly.LoadFrom (options.OutputAssembly); in FromFileBatch()
123 results.PathToAssembly = options.OutputAssembly; in FromFileBatch()
154 if (options.OutputAssembly == null || options.OutputAssembly.Length == 0) { in BuildArgs()
156 …options.OutputAssembly = GetTempFileNameWithExtension (options.TempFiles, ext, !options.GenerateIn… in BuildArgs()
159 args.AppendFormat ("/out:\"{0}\" ", options.OutputAssembly); in BuildArgs()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.CodeDom.Compiler/
H A DCompilerParametersCas.cs68 Assert.IsNull (cp.OutputAssembly, "OutputAssembly"); in Constructor0_Deny_Unrestricted()
69 cp.OutputAssembly = "mono.dll"; in Constructor0_Deny_Unrestricted()
99 Assert.IsNull (cp.OutputAssembly, "OutputAssembly"); in Constructor1_Deny_Unrestricted()
100 cp.OutputAssembly = "mono.dll"; in Constructor1_Deny_Unrestricted()
130 Assert.AreEqual ("mono.dll", cp.OutputAssembly, "OutputAssembly"); in Constructor2_Deny_Unrestricted()
131 cp.OutputAssembly = null; in Constructor2_Deny_Unrestricted()
161 Assert.AreEqual ("mono.dll", cp.OutputAssembly, "OutputAssembly"); in Constructor3_Deny_Unrestricted()
162 cp.OutputAssembly = null; in Constructor3_Deny_Unrestricted()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Microsoft.CSharp/
H A DCSharpCodeGenerator.cs148 if (!File.Exists (options.OutputAssembly)) { in FromFileBatch()
157 using (FileStream fs = File.OpenRead(options.OutputAssembly)) { in FromFileBatch()
165 results.PathToAssembly = options.OutputAssembly; in FromFileBatch()
201 if (options.OutputAssembly == null || options.OutputAssembly.Length == 0) { in BuildArgs()
203 options.OutputAssembly = GetTempFileNameWithExtension (options.TempFiles, extension, in BuildArgs()
206 args.AppendFormat("/out:\"{0}\" ",options.OutputAssembly); in BuildArgs()
/dports/devel/msbuild/msbuild-0.06/src/Tasks/
H A DAl.cs162 public ITaskItem OutputAssembly property in Microsoft.Build.Tasks.AL
341 …commandLine.AppendSwitchIfNotNull("/out:", (this.OutputAssembly == null) ? null : this.OutputAssem… in AddResponseFileCommands()
383 if (this.Culture != null && this.OutputAssembly != null) in Execute()
387 this.OutputAssembly.SetMetadata("Culture", this.Culture); in Execute()
H A DAxImp.cs80 public string OutputAssembly property in Microsoft.Build.Tasks.ResolveComReference.AxImp
137 commandLine.AppendSwitchIfNotNull("/out:", OutputAssembly); in AddCommandLineCommands()
H A DTlbImp.cs164 public string OutputAssembly property in Microsoft.Build.Tasks.ResolveComReference.TlbImp
252 commandLine.AppendSwitchIfNotNull("/out:", OutputAssembly); in AddCommandLineCommands()
/dports/math/libmesh/libmesh-1.6.2/examples/reduced_basis/reduced_basis_ex1/
H A Dassembly.h153 struct OutputAssembly : ElemAssembly struct
155 OutputAssembly(Real min_x_in, Real max_x_in, in OutputAssembly() argument
256 OutputAssembly L0;
257 OutputAssembly L1;
258 OutputAssembly L2;
259 OutputAssembly L3;
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/Microsoft.CSharp/
H A DCSharpCodeProviderTest.cs171 options.OutputAssembly = string.Empty; in CompileFromFileBatch_Executable_InMemory()
188 Assert.IsNotNull (options.OutputAssembly, "#A4"); in CompileFromFileBatch_Executable_InMemory()
189 Assert.AreEqual (".exe", Path.GetExtension (options.OutputAssembly), "#A5"); in CompileFromFileBatch_Executable_InMemory()
191 Assert.IsFalse (File.Exists (options.OutputAssembly), "#A7"); in CompileFromFileBatch_Executable_InMemory()
275 Assert.IsNotNull (options.OutputAssembly, "#A4"); in CompileFromFileBatch_Library_InMemory()
278 Assert.IsFalse (File.Exists (options.OutputAssembly), "#A7"); in CompileFromFileBatch_Library_InMemory()
365 var output_1 = options.OutputAssembly; in CompileFromSource_InMemory_Twice()
370 var output_2 = options.OutputAssembly; in CompileFromSource_InMemory_Twice()
411 options.OutputAssembly = outputAssembly; in CompileFromSourceBatch_InMemory()
423 Assert.IsNotNull (options.OutputAssembly, "#A3"); in CompileFromSourceBatch_InMemory()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/Compiler/
H A DXomlCompiler.cs495 string originalOutputAssembly = parameters.OutputAssembly; in Compile()
504 if (string.IsNullOrEmpty(parameters.OutputAssembly)) in Compile()
508 parameters.OutputAssembly = createdTempFileName + ".dll"; in Compile()
520 … parameters.OutputAssembly = info.FullName + "\\" + parameters.OutputAssembly; in Compile()
550 string outputAssembly = parameters.OutputAssembly; in Compile()
555 parameters.OutputAssembly = originalOutputAssembly; in Compile()
811 if (string.IsNullOrEmpty(parameters.OutputAssembly)) in GenerateLocalAssembly()
812 … localAssemblyPath = clonedParams.OutputAssembly = clonedParams.TempFiles.AddExtension("dll"); in GenerateLocalAssembly()
841 …alAssemblyPath = clonedParams.OutputAssembly = tempAssemblyDirectory + "\\" + Path.GetFileName(clo… in GenerateLocalAssembly()
/dports/math/libmesh/libmesh-1.6.2/examples/reduced_basis/reduced_basis_ex3/
H A Dassembly.h181 struct OutputAssembly : ElemAssembly struct
183 OutputAssembly(Real min_x_in, Real max_x_in, in OutputAssembly() function
289 OutputAssembly L0;
290 OutputAssembly L1;
291 OutputAssembly L2;
292 OutputAssembly L3;
/dports/math/libmesh/libmesh-1.6.2/examples/reduced_basis/reduced_basis_ex2/
H A Dassembly.h197 struct OutputAssembly : ElemAssembly struct
199 OutputAssembly(Real min_x_in, Real max_x_in, in OutputAssembly() argument
301 OutputAssembly L0;
302 OutputAssembly L1;
303 OutputAssembly L2;
304 OutputAssembly L3;
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/codedom/compiler/
H A DCodeCompiler.cs340 if (options.OutputAssembly == null || options.OutputAssembly.Length == 0) { in FromFileBatch()
342 … options.OutputAssembly = results.TempFiles.AddExtension(extension, !options.GenerateInMemory); in FromFileBatch()
347 … new FileStream(options.OutputAssembly, FileMode.Create, FileAccess.ReadWrite).Close(); in FromFileBatch()
398 File.Delete(options.OutputAssembly); in FromFileBatch()
402 …FileStream fs = new FileStream(options.OutputAssembly, FileMode.Open, FileAccess.Read, FileShare.R… in FromFileBatch()
424 results.PathToAssembly = options.OutputAssembly; in FromFileBatch()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/Microsoft.VisualBasic/
H A DVBCodeProviderTest.cs267 options.OutputAssembly = string.Empty; in CompileFromFileBatch_Executable_InMemory()
284 Assert.IsNotNull (options.OutputAssembly, "#A4"); in CompileFromFileBatch_Executable_InMemory()
285 Assert.AreEqual (".dll", Path.GetExtension (options.OutputAssembly), "#A5"); in CompileFromFileBatch_Executable_InMemory()
286 Assert.AreEqual (_tempDir, Path.GetDirectoryName (options.OutputAssembly), "#A6"); in CompileFromFileBatch_Executable_InMemory()
287 Assert.IsFalse (File.Exists (options.OutputAssembly), "#A7"); in CompileFromFileBatch_Executable_InMemory()
372 Assert.IsNotNull (options.OutputAssembly, "#A4"); in CompileFromFileBatch_Library_InMemory()
373 Assert.AreEqual (".dll", Path.GetExtension (options.OutputAssembly), "#A5"); in CompileFromFileBatch_Library_InMemory()
375 Assert.IsFalse (File.Exists (options.OutputAssembly), "#A7"); in CompileFromFileBatch_Library_InMemory()
467 options.OutputAssembly = outputAssembly; in CompileFromSourceBatch_InMemory()
479 Assert.IsNotNull (options.OutputAssembly, "#A3"); in CompileFromSourceBatch_InMemory()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web.Compilation/
H A DWebServiceCompiler.cs102 compilerParameters.OutputAssembly = Path.Combine (DynamicDir (), dllfilename); in GetCompiledType()
108 if (!File.Exists (compilerParameters.OutputAssembly)) in GetCompiledType()
111 assembly = Assembly.LoadFrom (compilerParameters.OutputAssembly); in GetCompiledType()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/src/System/CodeDom/Compiler/
H A DCompilerParameters.cs37 OutputAssembly = outputName; in CompilerParameters()
65 public string OutputAssembly { get; set; } property in System.CodeDom.Compiler.CompilerParameters
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build.Tasks/Microsoft.Build.Tasks/
H A DAL.cs79 if (OutputAssembly != null) in AddResponseFileCommands()
80 commandLine.AppendSwitchIfNotNull ("/out:", OutputAssembly.ItemSpec); in AddResponseFileCommands()
198 public ITaskItem OutputAssembly { property in Microsoft.Build.Tasks.AL
H A DManagedCompiler.cs93 if (OutputAssembly != null) in AddResponseFileCommands()
94 commandLine.AppendSwitchIfNotNull ("/out:", OutputAssembly.ItemSpec); in AddResponseFileCommands()
257 public ITaskItem OutputAssembly { property in Microsoft.Build.Tasks.ManagedCompiler
/dports/lang/mono/mono-5.10.1.57/mcs/tools/sgen/
H A Dsgen.cs153 parameters.OutputAssembly = Path.Combine (outDir, file); in Run()
155 if (File.Exists (parameters.OutputAssembly) && !force) { in Run()
156 …Console.WriteLine ("Cannot generate assembly '" + parameters.OutputAssembly + "' because it alread… in Run()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Windows.Forms/Test/System.Windows.Forms/
H A DClipboardTest.cs126 parameters.OutputAssembly = exeName; in DataRemainsOnClipboard_Xamarin4959()
165 parameters.OutputAssembly = exeName; in DataGetsCleared_Xamarin4959()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/Serialization/
H A DCompiler.cs183 …if (parent != null && (parameters.OutputAssembly == null || parameters.OutputAssembly.Length ==0))… in Compile()
188 parameters.OutputAssembly = assemblyName; in Compile()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Runtime.Remoting/System.Runtime.Remoting.MetadataServices/
H A DMetaData.cs66 pars.OutputAssembly = assemblyPath; in ConvertCodeSourceFileToAssemblyFile()
80 pars.OutputAssembly = assemblyPath; in ConvertCodeSourceStreamToAssemblyFile()

123456