Skip to content

Commit

Permalink
Fix Build Output
Browse files Browse the repository at this point in the history
Release Build Output was unset
  • Loading branch information
DJ Daemonix committed Jul 10, 2019
1 parent 2426986 commit eb0f4d3
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 24 deletions.
Original file line number Diff line number Diff line change
@@ -1,31 +1,34 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<LangVersion>preview</LangVersion>
<Version>0.1.3</Version>
<Authors>DJ Daemonix</Authors>
<Company>Nodsoft ES</Company>
<Product>YumeChan</Product>
<Copyright>GNU GPLv3</Copyright>
<RepositoryUrl>https://github.com/DJDaemonix/YumeChan</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
</PropertyGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<LangVersion>preview</LangVersion>
<Version>0.1.3</Version>
<Authors>DJ Daemonix</Authors>
<Company>Nodsoft ES</Company>
<Product>YumeChan</Product>
<Copyright>GNU GPLv3</Copyright>
<RepositoryUrl>https://github.com/DJDaemonix/YumeChan</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutDir>$(SolutionDir)build</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutDir>$(SolutionDir)build</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutDir>$(SolutionDir)build</OutDir>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="SourceLink.Create.CommandLine" Version="2.8.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="SourceLink.Create.CommandLine" Version="2.8.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Nodsoft.YumeChan.Core\Nodsoft.YumeChan.Core.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Nodsoft.YumeChan.Core\Nodsoft.YumeChan.Core.csproj" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/Nodsoft.YumeChan.Modules/Nodsoft.YumeChan.Modules.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutDir>$(SolutionDir)build\Modules</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutDir>$(SolutionDir)build\Modules</OutDir>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Discord.Net" Version="2.1.1" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutDir>$(SolutionDir)build</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutDir>$(SolutionDir)build</OutDir>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Nodsoft.YumeChan.Core\Nodsoft.YumeChan.Core.csproj" />
Expand Down

0 comments on commit eb0f4d3

Please sign in to comment.