Browse Source

Added support for x86 and x64 in .Net45 projects

tags/docs-0.9
RogueException 9 years ago
parent
commit
270497f6fb
5 changed files with 27 additions and 3 deletions
  1. +3
    -1
      src/Discord.Net.Audio.Net45/project.json
  2. +8
    -0
      src/Discord.Net.Commands.Net45/Discord.Net.Commands.csproj
  3. +10
    -0
      src/Discord.Net.Commands.Net45/project.json
  4. +3
    -1
      src/Discord.Net.Modules.Net45/project.json
  5. +3
    -1
      src/Discord.Net.Net45/project.json

+ 3
- 1
src/Discord.Net.Audio.Net45/project.json View File

@@ -7,6 +7,8 @@
"net45": { }
},
"runtimes": {
"win": { }
"win": { },
"win-x86": { },
"win-x64": { }
}
}

+ 8
- 0
src/Discord.Net.Commands.Net45/Discord.Net.Commands.csproj View File

@@ -125,6 +125,14 @@
<Name>Discord.Net</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Content Include="project.json" />
</ItemGroup>
<ItemGroup>
<Content Include="project.lock.json">
<DependentUpon>project.json</DependentUpon>
</Content>
</ItemGroup>
<Import Project="..\Discord.Net.Shared\Discord.Net.Shared.projitems" Label="Shared" />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.


+ 10
- 0
src/Discord.Net.Commands.Net45/project.json View File

@@ -0,0 +1,10 @@
{
"frameworks": {
"net45": { }
},
"runtimes": {
"win": { },
"win-x86": { },
"win-x64": { }
}
}

+ 3
- 1
src/Discord.Net.Modules.Net45/project.json View File

@@ -6,6 +6,8 @@
"net45": { }
},
"runtimes": {
"win": { }
"win": { },
"win-x86": { },
"win-x64": { }
}
}

+ 3
- 1
src/Discord.Net.Net45/project.json View File

@@ -9,6 +9,8 @@
"net45": { }
},
"runtimes": {
"win": { }
"win": { },
"win-x86": { },
"win-x64": { }
}
}

Loading…
Cancel
Save