| 123456789101112131415161718192021222324252627 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>netcoreapp3.1</TargetFramework>
- <SignAssembly>true</SignAssembly>
- <DelaySign>false</DelaySign>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <OutputPath>C:\Users\admin\source\repos\DeviceEmotion\bin\Debug\</OutputPath>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Termco\Termco\Termco.csproj" />
- <ProjectReference Include="..\ApiService\ApiService.csproj" />
- <ProjectReference Include="..\Leah\Leah.csproj" />
- <ProjectReference Include="D:\admin\Documents\Visual Studio 2015\Projects\fire\fire.csproj" />
- </ItemGroup>
- <ItemGroup>
- <None Update="config\services.conf">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|