diff options
Diffstat (limited to 'qpid/dotnet/TopicPublisher')
| -rw-r--r-- | qpid/dotnet/TopicPublisher/TopicPublisher.csproj | 4 | ||||
| -rw-r--r-- | qpid/dotnet/TopicPublisher/default.build | 26 |
2 files changed, 28 insertions, 2 deletions
diff --git a/qpid/dotnet/TopicPublisher/TopicPublisher.csproj b/qpid/dotnet/TopicPublisher/TopicPublisher.csproj index 3d5350ca27..2e03ce858e 100644 --- a/qpid/dotnet/TopicPublisher/TopicPublisher.csproj +++ b/qpid/dotnet/TopicPublisher/TopicPublisher.csproj @@ -14,7 +14,7 @@ <DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
+ <OutputPath>..\bin\net-2.0\debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@@ -22,7 +22,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
+ <OutputPath>..\bin\net-2.0\release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
diff --git a/qpid/dotnet/TopicPublisher/default.build b/qpid/dotnet/TopicPublisher/default.build new file mode 100644 index 0000000000..38ad896f34 --- /dev/null +++ b/qpid/dotnet/TopicPublisher/default.build @@ -0,0 +1,26 @@ +<?xml version="1.0"?>
+<project name="TopicPublisher" default="build">
+ <!--
+ Properties that come from master build file
+ - build.dir: root directory for build
+ - build.debug: true if building debug release
+ - build.defines: variables to define during build
+ -->
+
+ <target name="build">
+ <csc target="exe"
+ define="${build.defines}"
+ debug="${build.debug}"
+ unsafe="true"
+ output="${build.dir}/${project::get-name()}.exe">
+
+ <sources>
+ <include name="**/*.cs" />
+ </sources>
+ <references>
+ <include name="${build.dir}\Qpid.Client.Tests.dll"/>
+ </references>
+ </csc>
+ </target>
+</project>
+
|
