-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathSimpleBot.csproj
More file actions
18 lines (18 loc) · 672 Bytes
/
SimpleBot.csproj
File metadata and controls
18 lines (18 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<Nullable>enable</Nullable>
<AssemblyName>SimpleBot</AssemblyName>
<RootNamespace>SimpleBot</RootNamespace>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<OutputPath>..\..\..\bin\</OutputPath>
<PlatformTarget>AnyCPU</PlatformTarget>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\LibreMetaverse\LibreMetaverse.csproj" />
</ItemGroup>
</Project>