blob: 2d446f8784c8e3931f2cee0404f3625f445d4d99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net35</TargetFramework>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AssemblyName>TSforge</AssemblyName>
<IncludeSourceRevisionInInformationalVersion>False</IncludeSourceRevisionInInformationalVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\LibTSforge\LibTSforge.csproj" />
</ItemGroup>
</Project>
|