...
This commit is contained in:
9
YaDaemon/Program.cs
Normal file
9
YaDaemon/Program.cs
Normal file
@ -0,0 +1,9 @@
|
||||
using System;
|
||||
|
||||
class YaDaemon
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine("Hello World!");
|
||||
}
|
||||
}
|
8
YaDaemon/YaDaemon.csproj
Executable file
8
YaDaemon/YaDaemon.csproj
Executable file
@ -0,0 +1,8 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp1.1</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
5
YaDaemon/global.json
Normal file
5
YaDaemon/global.json
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "1.0.0-rc4-004771"
|
||||
}
|
||||
}
|
@ -1,13 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp1.0</TargetFramework>
|
||||
<RuntimeIdentifiers>debian.8-x64,win10-x64;osx.10.11-x64;ubuntu.16.04-x64</RuntimeIdentifiers>
|
||||
<EnableDefaultCompileItems>true</EnableDefaultCompileItems>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="YavscLib" Version="1.0.0" />
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0-preview-20161123-03" />
|
||||
<PackageReference Include="xunit" Version="2.2.0-beta4-build3444" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0-beta4-build1194" />
|
||||
@ -71,6 +70,8 @@
|
||||
<PackageReference Include= "Microsoft.AspNet.Mvc.Formatters.Json" Version="6.0.0-rc1-*" />
|
||||
<PackageReference Include= "Microsoft.AspNet.OWin" Version="1.0.0-rc1-final" />
|
||||
<PackageReference Include= "System.Json" Version="4.0.20126.16343" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
||||
<Content Include="Views\Account\Authorize.cshtml" />
|
||||
<Content Include="Views\Account\Lockout.cshtml" />
|
||||
@ -86,6 +87,8 @@
|
||||
<Content Include="xunit.runner.json" />
|
||||
<Content Include="package.json" />
|
||||
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
||||
<Content Include="Startup\Startup.cs" />
|
||||
<Content Include="Startup\Startup.DataProtection.cs" />
|
||||
@ -110,6 +113,9 @@
|
||||
<Content Include="ViewComponents\DirectoryViewComponent.cs" />
|
||||
<Content Include="ViewComponents\EstimateViewComponent.cs" />
|
||||
<Content Include="ViewComponents\AvatarViewComponent.cs" />
|
||||
|
||||
|
||||
|
||||
<Content Include="Controllers\ManageController.cs" />
|
||||
<Content Include="Controllers\CommandFormsController.cs" />
|
||||
<Content Include="Controllers\DjSettingsController.cs" />
|
||||
@ -164,7 +170,6 @@
|
||||
<Content Include="ViewModels\Manage\DoDirectCreditViewModel.cs" />
|
||||
<Content Include="ViewModels\Manage\SetActivityViewModel.cs" />
|
||||
<Content Include="ViewModels\Manage\SetPasswordViewModel.cs" />
|
||||
<Content Include="ViewModels\Manage\AddBankInfoViewModel.cs" />
|
||||
<Content Include="ViewModels\Calendar\UpcomingEventsViewModel.cs" />
|
||||
<Content Include="ViewModels\Calendar\SetGoogleCalendarViewModel.cs" />
|
||||
<Content Include="ViewModels\Chat\ChatUserInfo.cs" />
|
||||
@ -556,7 +561,6 @@
|
||||
<Content Include="Settings\TwilioSettings.cs" />
|
||||
<Content Include="Settings\PayPalSettings.cs" />
|
||||
<Content Include="Settings\GoogleAuthSettings.cs" />
|
||||
<Content Include="Filters\LanguageActionFilter.cs" />
|
||||
<Content Include="Attributes\ActivitySettingsAttribute.cs" />
|
||||
<Content Include="Resources\YavscLocalisation.cs" />
|
||||
<Content Include="Extensions\EnumExtensions.cs" />
|
||||
@ -633,4 +637,6 @@
|
||||
<Content Include="Helpers\CompanyInfoHelpers.cs" />
|
||||
|
||||
</ItemGroup>
|
||||
<Import Project="../YavscLib/YavscLib.csproj" />
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
</Project>
|
||||
|
11
Yavsc/app.config
Normal file
11
Yavsc/app.config
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
</configuration>
|
@ -1,6 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard1.4</TargetFramework>
|
||||
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
||||
</PropertyGroup>
|
||||
|
||||
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" Condition="Exists('$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets')"/>
|
||||
<Import Project="$(MSBuildExtensionsPath32)\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" Condition="Exists('$(MSBuildExtensionsPath32)\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets')"/>
|
||||
<PropertyGroup>
|
||||
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
@ -84,8 +93,6 @@
|
||||
<Compile Include="IBaseTrackedEntity.cs" />
|
||||
<Compile Include="Identity\IApplicationUser.cs" />
|
||||
<Compile Include="Identity\IChatUserInfo.cs" />
|
||||
<Compile Include="Identity\ICircle.cs" />
|
||||
<Compile Include="Identity\ICircleMember.cs" />
|
||||
<Compile Include="Identity\Security\ICircleAuthorization.cs" />
|
||||
<Compile Include="Identity\Security\ICircleAuthorized.cs" />
|
||||
<Compile Include="IT\ICode.cs" />
|
||||
@ -109,12 +116,10 @@
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="project.json" />
|
||||
<Content Include="HairCut\IHairCutQuery.cs" />
|
||||
<Content Include="HairCut\IPrestation.cs" />
|
||||
<Content Include="HairCut\HairLength.cs" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>Ce projet fait référence à des packages NuGet qui sont manquants sur cet ordinateur. Utilisez l'option de restauration des packages NuGet pour les télécharger. Pour plus d'informations, consultez http://go.microsoft.com/fwlink/?LinkID=322105. Le fichier manquant est : {0}.</ErrorText>
|
||||
@ -127,4 +132,4 @@
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
||||
</Project>
|
||||
|
@ -24,6 +24,6 @@
|
||||
"System.Resources.ResourceManager": "4.0.0",
|
||||
"System.Collections": "4.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user