Framework Setup
This commit is contained in:
4
FinalProject/FinalProject.ConsoleClient/ConsoleClient.cs
Normal file
4
FinalProject/FinalProject.ConsoleClient/ConsoleClient.cs
Normal file
@@ -0,0 +1,4 @@
|
||||
$HEADER$namespace $NAMESPACE$
|
||||
{
|
||||
public class $CLASS$ {$END$}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
using DryIoc;
|
||||
using FinalProject.Utilities.BootStrap;
|
||||
|
||||
namespace ConsoleClient
|
||||
{
|
||||
public class ConsoleClientModule : Module
|
||||
{
|
||||
public override void Register(IContainer container)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Resolve(IContainer container)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
14042
FinalProject/FinalProject.ConsoleClient/DryIoc/Container.cs
Normal file
14042
FinalProject/FinalProject.ConsoleClient/DryIoc/Container.cs
Normal file
File diff suppressed because it is too large
Load Diff
2789
FinalProject/FinalProject.ConsoleClient/DryIoc/Expression.cs
Normal file
2789
FinalProject/FinalProject.ConsoleClient/DryIoc/Expression.cs
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
6198
FinalProject/FinalProject.ConsoleClient/DryIoc/ImTools.cs
Normal file
6198
FinalProject/FinalProject.ConsoleClient/DryIoc/ImTools.cs
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,77 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="..\packages\DryIoc.4.1.4\build\DryIoc.props" Condition="Exists('..\packages\DryIoc.4.1.4\build\DryIoc.props')" />
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{B97EDA0D-1380-4C4D-A402-46D78D690F33}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>ConsoleClient</RootNamespace>
|
||||
<AssemblyName>FinalProject.ConsoleClient</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="ConsoleClient.cs" />
|
||||
<Compile Include="ConsoleClientModule.cs" />
|
||||
<Compile Include="DryIoc\Container.cs" />
|
||||
<Compile Include="DryIoc\Expression.cs" />
|
||||
<Compile Include="DryIoc\FastExpressionCompiler.cs" />
|
||||
<Compile Include="DryIoc\ImTools.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\FinalProject.SimRunner\FinalProject.SimRunner.csproj">
|
||||
<Project>{aa7aad1b-151d-42fc-af4f-e8e73a36c633}</Project>
|
||||
<Name>FinalProject.SimRunner</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\FinalProject.Utilities\FinalProject.Utilities.csproj">
|
||||
<Project>{a417c78d-6ca9-43b4-9d23-195541862b21}</Project>
|
||||
<Name>FinalProject.Utilities</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105.The missing file is {0}.</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\packages\DryIoc.4.1.4\build\DryIoc.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\DryIoc.4.1.4\build\DryIoc.props'))" />
|
||||
</Target>
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
||||
@@ -0,0 +1,35 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("FinalProject.ConsoleClient")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("FinalProject.ConsoleClient")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2020")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
[assembly: Guid("B97EDA0D-1380-4C4D-A402-46D78D690F33")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
Binary file not shown.
Binary file not shown.
4
FinalProject/FinalProject.ConsoleClient/packages.config
Normal file
4
FinalProject/FinalProject.ConsoleClient/packages.config
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="DryIoc" version="4.1.4" targetFramework="net472" />
|
||||
</packages>
|
||||
Reference in New Issue
Block a user