Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/msvc
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2009-05-02 10:08:19 +0400
committerMiguel de Icaza <miguel@gnome.org>2009-05-02 10:08:19 +0400
commit81497c47388c1e090e41316970ad80930f0e9352 (patch)
treeb025040c4f7ca28c1ca04572ee2fe885e4f70125 /msvc
parent48c9b30498d8153f5b0473152fccbc7a6bb6e5b2 (diff)
fix
svn path=/trunk/mono/; revision=133374
Diffstat (limited to 'msvc')
-rw-r--r--msvc/scripts/prepare.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/msvc/scripts/prepare.cs b/msvc/scripts/prepare.cs
index df9e48af89c..f133911bba0 100644
--- a/msvc/scripts/prepare.cs
+++ b/msvc/scripts/prepare.cs
@@ -11,8 +11,8 @@ class Prepare {
static void Filter (string inpath, string outpath, filt filter)
{
- using (var ins = new StreamReader (){
- using (var outs = new StreamWriter ()){
+ using (var ins = new StreamReader (inpath)){
+ using (var outs = new StreamWriter (outpath)){
filter (ins, outs);
}
}
@@ -31,4 +31,4 @@ class Prepare {
(i, o) => o.Write (i.ReadToEnd ().Replace ("@MONO_VERSION@", "Mono-VSBuild")));
}
-} \ No newline at end of file
+}