Clean up some build issues. Remove nonexistent stuff. Add permission. Add required defs.

This commit is contained in:
Atsushi Eno 2012-05-08 23:06:46 +09:00
Родитель 0bce2ceeef
Коммит ea7989cbdf
4 изменённых файлов: 10 добавлений и 10 удалений

8
DynamicTest/DynamicTest.sln Executable file → Normal file
Просмотреть файл

@ -5,8 +5,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Json.Next", "System.
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DynamicTest", "DynamicTest\DynamicTest.csproj", "{87AC9B03-BFC3-4DE7-BBF1-3C6015D3F387}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Reactive.Android", "System.Reactive.Android\mono-reactive\System.Reactive\System.Reactive.Android.csproj", "{C3403D3D-408A-4FD8-8C34-A8CD818D489A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -26,12 +24,6 @@ Global
{87AC9B03-BFC3-4DE7-BBF1-3C6015D3F387}.Debug|Any CPU.Build.0 = Debug|Any CPU
{87AC9B03-BFC3-4DE7-BBF1-3C6015D3F387}.Release|Any CPU.ActiveCfg = Release|Any CPU
{87AC9B03-BFC3-4DE7-BBF1-3C6015D3F387}.Release|Any CPU.Build.0 = Release|Any CPU
{C3403D3D-408A-4FD8-8C34-A8CD818D489A}.Android|Any CPU.ActiveCfg = Android|Any CPU
{C3403D3D-408A-4FD8-8C34-A8CD818D489A}.Android|Any CPU.Build.0 = Android|Any CPU
{C3403D3D-408A-4FD8-8C34-A8CD818D489A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C3403D3D-408A-4FD8-8C34-A8CD818D489A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C3403D3D-408A-4FD8-8C34-A8CD818D489A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C3403D3D-408A-4FD8-8C34-A8CD818D489A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
StartupItem = DynamicTest\DynamicTest.csproj

2
DynamicTest/DynamicTest/DynamicTest.csproj Executable file → Normal file
Просмотреть файл

@ -67,4 +67,4 @@
<Name>System.Json.Next</Name>
</ProjectReference>
</ItemGroup>
</Project>
</Project>

Просмотреть файл

@ -20,6 +20,8 @@ using Android.OS;
using Path = System.IO.Path;
[assembly:UsesPermission (Android.Manifest.Permission.Internet)]
namespace DynamicTest
{
[Activity (Label = "Mono Dynamic Test", MainLauncher = true)]

8
DynamicTest/System.Json.Next/System.Json.Next.csproj Executable file → Normal file
Просмотреть файл

@ -33,6 +33,7 @@
<AndroidUseSharedRuntime>false</AndroidUseSharedRuntime>
<ConsolePause>false</ConsolePause>
<AndroidLinkMode>SdkOnly</AndroidLinkMode>
<DefineConstants>MONODROID</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
@ -67,6 +68,11 @@
<ItemGroup>
<None Include="System.Json\Settings.StyleCop" />
<None Include="System.Json\System.Json.csproj" />
<None Include="System.Json\Properties\Resources.resx" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="System.Json\Properties\Resources.resx">
<Gettext-ScanForTranslations>false</Gettext-ScanForTranslations>
<LogicalName>System.Json.Properties.Resources.resources</LogicalName>
</EmbeddedResource>
</ItemGroup>
</Project>