|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>net6.0</TargetFramework> |
| 5 | + <ProductVersion>8.1.3</ProductVersion> |
| 6 | + <SchemaVersion>2.0</SchemaVersion> |
| 7 | + <ProjectGuid>{69F6D94E-70AB-481A-8610-B37DCDE23AE9}</ProjectGuid> |
| 8 | + <AssemblyName>RESTbot</AssemblyName> |
| 9 | + <OutputPath>restbot-bin\</OutputPath> |
| 10 | + <OutputType>Exe</OutputType> |
| 11 | + <AppDesignerFolder>Properties</AppDesignerFolder> |
| 12 | + <RootNamespace>RESTBot</RootNamespace> |
| 13 | + <AssemblyName>RESTBot</AssemblyName> |
| 14 | + <GenerateAssemblyInfo>true</GenerateAssemblyInfo> |
| 15 | + <Version>8.1.3</Version> |
| 16 | + <PackageVersion>8.1.3</PackageVersion> |
| 17 | + <ReleaseVersion>8.1.3</ReleaseVersion> |
| 18 | + <SynchReleaseVersion>false</SynchReleaseVersion> |
| 19 | + <ApplicationIcon>assets\images\RESTbot-logo.png</ApplicationIcon> |
| 20 | + <PackageId>RESTbot</PackageId> |
| 21 | + <Authors>Gwyneth Llewelyn, Pleiades, others</Authors> |
| 22 | + <Copyright>Copyright © Pleiades 2007. Copyright © Gwyneth Llewelyn 2010,2021. Some rights reserved</Copyright> |
| 23 | + <PackageIconUrl>https://github.com/GwynethLlewelyn/restbot/raw/master/assets/images/RESTbot-logo.png</PackageIconUrl> |
| 24 | + <PackageLicenseFile>LICENSE.md</PackageLicenseFile> |
| 25 | + <PackageLicenseUrl>https://github.com/GwynethLlewelyn/restbot/blob/master/LICENSE.md</PackageLicenseUrl> |
| 26 | + <PackageProjectUrl>https://github.com/GwynethLlewelyn/restbot</PackageProjectUrl> |
| 27 | + <Owners>Gwyneth Llewelyn</Owners> |
| 28 | + <PackageTags>LMV OMV OpenMetaverse OpenSim OpenSimulator Halcyon OpenMetaverseFoundation VirtualWorld Radegast SecondLife</PackageTags> |
| 29 | + <RepositoryUrl>https://github.com/GwynethLlewelyn/restbot</RepositoryUrl> |
| 30 | + <Title>RESTbot</Title> |
| 31 | + <Summary>RESTBot is a C# webserver that uses RESTful transactions to interact with a bot in Second Life or OpenSimulator. It relies on LibreMetaverse.</Summary> |
| 32 | + <Description>RESTBot is a C# webserver that uses RESTful transactions to interact with a bot in Second Life or OpenSimulator. It relies on LibreMetaverse.</Description> |
| 33 | + <NuspecFile>$(AssemblyName).nuspec</NuspecFile> |
| 34 | + <TargetFrameworkVersion>net6.0</TargetFrameworkVersion> |
| 35 | + </PropertyGroup> |
| 36 | + <PropertyGroup> |
| 37 | + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
| 38 | + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
| 39 | + </PropertyGroup> |
| 40 | + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
| 41 | + <DebugSymbols>true</DebugSymbols> |
| 42 | + <DebugType>full</DebugType> |
| 43 | + <Optimize>false</Optimize> |
| 44 | + <DefineConstants>DEBUG;TRACE</DefineConstants> |
| 45 | + <ErrorReport>prompt</ErrorReport> |
| 46 | + <WarningLevel>4</WarningLevel> |
| 47 | + <DocumentationFile>restbot-bin\RESTBot.xml</DocumentationFile> |
| 48 | + </PropertyGroup> |
| 49 | + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
| 50 | + <DebugType>pdbonly</DebugType> |
| 51 | + <Optimize>true</Optimize> |
| 52 | + <DefineConstants>TRACE</DefineConstants> |
| 53 | + <ErrorReport>prompt</ErrorReport> |
| 54 | + <WarningLevel>4</WarningLevel> |
| 55 | + </PropertyGroup> |
| 56 | + <ItemGroup> |
| 57 | + <Compile Include="restbot-plugins\AvatarsPlugin.cs" /> |
| 58 | + <Compile Include="restbot-plugins\ChatPlugin.cs" /> |
| 59 | + <Compile Include="restbot-plugins\GroupsPlugin.cs" /> |
| 60 | + <Compile Include="restbot-plugins\InventoryPlugin.cs" /> |
| 61 | + <Compile Include="restbot-plugins\MovementPlugin.cs" /> |
| 62 | + <Compile Include="restbot-plugins\PrimsPlugin.cs" /> |
| 63 | + <Compile Include="restbot-plugins\ReaperPlugin.cs" /> |
| 64 | + <Compile Include="restbot-plugins\StatsPlugin.cs" /> |
| 65 | + <Compile Include="restbot-src\Configuration.cs" /> |
| 66 | + <Compile Include="restbot-src\DebugUtilities.cs" /> |
| 67 | + <Compile Include="restbot-src\Program.cs" /> |
| 68 | + <Compile Include="restbot-src\RestBot.cs" /> |
| 69 | + <Compile Include="restbot-src\RestPlugin.cs" /> |
| 70 | + <Compile Include="restbot-src\Server\HeaderConstructor.cs" /> |
| 71 | + <Compile Include="restbot-src\Server\HeaderLines.cs" /> |
| 72 | + <Compile Include="restbot-src\Server\HeaderParser.cs" /> |
| 73 | + <Compile Include="restbot-src\Server\Router.cs" /> |
| 74 | + <Compile Include="restbot-src\Server\Server.cs" /> |
| 75 | + </ItemGroup> |
| 76 | + <ItemGroup> |
| 77 | + <Reference Include="System" /> |
| 78 | + <Reference Include="System.XML" /> |
| 79 | + <Reference Include="LibreMetaverse" /> |
| 80 | + <Reference Include="LibreMetaverse.Types" /> |
| 81 | + <Reference Include="LibreMetaverse.StructuredData" /> |
| 82 | + <Reference Include="System.Configuration" /> |
| 83 | + <Reference Include="System.Web" /> |
| 84 | + <Reference Include="log4net"> |
| 85 | + <HintPath>packages\log4net.2.0.13\lib\net45\log4net.dll</HintPath> |
| 86 | + <Private>False</Private> |
| 87 | + </Reference> |
| 88 | + </ItemGroup> |
| 89 | + <ItemGroup> |
| 90 | + <None Include="packages.config" /> |
| 91 | + </ItemGroup> |
| 92 | + <Target Name="Build" Inputs="@(Compile)" Outputs="$(OutputPath)$(AssemblyName).exe"> |
| 93 | + <MakeDir Directories="$(OutputPath)" Condition="!Exists('$(OutputPath)')" /> |
| 94 | + <Csc Sources="@(Compile)" OutputAssembly="$(OutputPath)$(AssemblyName).exe" /> |
| 95 | + </Target> |
| 96 | + <Target Name="Clean"> |
| 97 | + <Delete Files="$(OutputPath)$(AssemblyName).exe" /> |
| 98 | + </Target> |
| 99 | + <Target Name="Rebuild" DependsOnTargets="Clean;Build" /> |
| 100 | + <Target Name="BeforeBuild"> |
| 101 | + </Target> |
| 102 | + <Target Name="AfterBuild"> |
| 103 | + </Target> |
| 104 | +</Project> |
0 commit comments