opkuis
342
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,342 @@
|
|||
## Ignore Visual Studio temporary files, build results, and
|
||||
## files generated by popular Visual Studio add-ons.
|
||||
##
|
||||
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
||||
|
||||
# User-specific files
|
||||
*.rsuser
|
||||
*.suo
|
||||
*.user
|
||||
*.userosscache
|
||||
*.sln.docstates
|
||||
|
||||
# User-specific files (MonoDevelop/Xamarin Studio)
|
||||
*.userprefs
|
||||
|
||||
# Build results
|
||||
[Dd]ebug/
|
||||
[Dd]ebugPublic/
|
||||
[Rr]elease/
|
||||
[Rr]eleases/
|
||||
x64/
|
||||
x86/
|
||||
[Aa][Rr][Mm]/
|
||||
[Aa][Rr][Mm]64/
|
||||
bld/
|
||||
[Bb]in/
|
||||
[Oo]bj/
|
||||
[Ll]og/
|
||||
|
||||
# Visual Studio 2015/2017 cache/options directory
|
||||
.vs/
|
||||
# Uncomment if you have tasks that create the project's static files in wwwroot
|
||||
#wwwroot/
|
||||
|
||||
# Visual Studio 2017 auto generated files
|
||||
Generated\ Files/
|
||||
|
||||
# MSTest test Results
|
||||
[Tt]est[Rr]esult*/
|
||||
[Bb]uild[Ll]og.*
|
||||
|
||||
# NUNIT
|
||||
*.VisualState.xml
|
||||
TestResult.xml
|
||||
|
||||
# Build Results of an ATL Project
|
||||
[Dd]ebugPS/
|
||||
[Rr]eleasePS/
|
||||
dlldata.c
|
||||
|
||||
# Benchmark Results
|
||||
BenchmarkDotNet.Artifacts/
|
||||
|
||||
# .NET Core
|
||||
project.lock.json
|
||||
project.fragment.lock.json
|
||||
artifacts/
|
||||
|
||||
# StyleCop
|
||||
StyleCopReport.xml
|
||||
|
||||
# Files built by Visual Studio
|
||||
*_i.c
|
||||
*_p.c
|
||||
*_h.h
|
||||
*.ilk
|
||||
*.meta
|
||||
*.obj
|
||||
*.iobj
|
||||
*.pch
|
||||
*.pdb
|
||||
*.ipdb
|
||||
*.pgc
|
||||
*.pgd
|
||||
*.rsp
|
||||
*.sbr
|
||||
*.tlb
|
||||
*.tli
|
||||
*.tlh
|
||||
*.tmp
|
||||
*.tmp_proj
|
||||
*_wpftmp.csproj
|
||||
*.log
|
||||
*.vspscc
|
||||
*.vssscc
|
||||
.builds
|
||||
*.pidb
|
||||
*.svclog
|
||||
*.scc
|
||||
|
||||
# Chutzpah Test files
|
||||
_Chutzpah*
|
||||
|
||||
# Visual C++ cache files
|
||||
ipch/
|
||||
*.aps
|
||||
*.ncb
|
||||
*.opendb
|
||||
*.opensdf
|
||||
*.sdf
|
||||
*.cachefile
|
||||
*.VC.db
|
||||
*.VC.VC.opendb
|
||||
|
||||
# Visual Studio profiler
|
||||
*.psess
|
||||
*.vsp
|
||||
*.vspx
|
||||
*.sap
|
||||
|
||||
# Visual Studio Trace Files
|
||||
*.e2e
|
||||
|
||||
# TFS 2012 Local Workspace
|
||||
$tf/
|
||||
|
||||
# Guidance Automation Toolkit
|
||||
*.gpState
|
||||
|
||||
# ReSharper is a .NET coding add-in
|
||||
_ReSharper*/
|
||||
*.[Rr]e[Ss]harper
|
||||
*.DotSettings.user
|
||||
|
||||
# JustCode is a .NET coding add-in
|
||||
.JustCode
|
||||
|
||||
# TeamCity is a build add-in
|
||||
_TeamCity*
|
||||
|
||||
# DotCover is a Code Coverage Tool
|
||||
*.dotCover
|
||||
|
||||
# AxoCover is a Code Coverage Tool
|
||||
.axoCover/*
|
||||
!.axoCover/settings.json
|
||||
|
||||
# Visual Studio code coverage results
|
||||
*.coverage
|
||||
*.coveragexml
|
||||
|
||||
# NCrunch
|
||||
_NCrunch_*
|
||||
.*crunch*.local.xml
|
||||
nCrunchTemp_*
|
||||
|
||||
# MightyMoose
|
||||
*.mm.*
|
||||
AutoTest.Net/
|
||||
|
||||
# Web workbench (sass)
|
||||
.sass-cache/
|
||||
|
||||
# Installshield output folder
|
||||
[Ee]xpress/
|
||||
|
||||
# DocProject is a documentation generator add-in
|
||||
DocProject/buildhelp/
|
||||
DocProject/Help/*.HxT
|
||||
DocProject/Help/*.HxC
|
||||
DocProject/Help/*.hhc
|
||||
DocProject/Help/*.hhk
|
||||
DocProject/Help/*.hhp
|
||||
DocProject/Help/Html2
|
||||
DocProject/Help/html
|
||||
|
||||
# Click-Once directory
|
||||
publish/
|
||||
|
||||
# Publish Web Output
|
||||
*.[Pp]ublish.xml
|
||||
*.azurePubxml
|
||||
# Note: Comment the next line if you want to checkin your web deploy settings,
|
||||
# but database connection strings (with potential passwords) will be unencrypted
|
||||
*.pubxml
|
||||
*.publishproj
|
||||
|
||||
# Microsoft Azure Web App publish settings. Comment the next line if you want to
|
||||
# checkin your Azure Web App publish settings, but sensitive information contained
|
||||
# in these scripts will be unencrypted
|
||||
PublishScripts/
|
||||
|
||||
# NuGet Packages
|
||||
*.nupkg
|
||||
# The packages folder can be ignored because of Package Restore
|
||||
**/[Pp]ackages/*
|
||||
# except build/, which is used as an MSBuild target.
|
||||
!**/[Pp]ackages/build/
|
||||
# Uncomment if necessary however generally it will be regenerated when needed
|
||||
#!**/[Pp]ackages/repositories.config
|
||||
# NuGet v3's project.json files produces more ignorable files
|
||||
*.nuget.props
|
||||
*.nuget.targets
|
||||
|
||||
# Microsoft Azure Build Output
|
||||
csx/
|
||||
*.build.csdef
|
||||
|
||||
# Microsoft Azure Emulator
|
||||
ecf/
|
||||
rcf/
|
||||
|
||||
# Windows Store app package directories and files
|
||||
AppPackages/
|
||||
BundleArtifacts/
|
||||
Package.StoreAssociation.xml
|
||||
_pkginfo.txt
|
||||
*.appx
|
||||
|
||||
# Visual Studio cache files
|
||||
# files ending in .cache can be ignored
|
||||
*.[Cc]ache
|
||||
# but keep track of directories ending in .cache
|
||||
!?*.[Cc]ache/
|
||||
|
||||
# Others
|
||||
ClientBin/
|
||||
~$*
|
||||
*~
|
||||
*.dbmdl
|
||||
*.dbproj.schemaview
|
||||
*.jfm
|
||||
*.pfx
|
||||
*.publishsettings
|
||||
orleans.codegen.cs
|
||||
|
||||
# Including strong name files can present a security risk
|
||||
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
|
||||
#*.snk
|
||||
|
||||
# Since there are multiple workflows, uncomment next line to ignore bower_components
|
||||
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
|
||||
#bower_components/
|
||||
# ASP.NET Core default setup: bower directory is configured as wwwroot/lib/ and bower restore is true
|
||||
**/wwwroot/lib/
|
||||
|
||||
# RIA/Silverlight projects
|
||||
Generated_Code/
|
||||
|
||||
# Backup & report files from converting an old project file
|
||||
# to a newer Visual Studio version. Backup files are not needed,
|
||||
# because we have git ;-)
|
||||
_UpgradeReport_Files/
|
||||
Backup*/
|
||||
UpgradeLog*.XML
|
||||
UpgradeLog*.htm
|
||||
ServiceFabricBackup/
|
||||
*.rptproj.bak
|
||||
|
||||
# SQL Server files
|
||||
*.mdf
|
||||
*.ldf
|
||||
*.ndf
|
||||
|
||||
# Business Intelligence projects
|
||||
*.rdl.data
|
||||
*.bim.layout
|
||||
*.bim_*.settings
|
||||
*.rptproj.rsuser
|
||||
|
||||
# Microsoft Fakes
|
||||
FakesAssemblies/
|
||||
|
||||
# GhostDoc plugin setting file
|
||||
*.GhostDoc.xml
|
||||
|
||||
# Node.js Tools for Visual Studio
|
||||
.ntvs_analysis.dat
|
||||
node_modules/
|
||||
|
||||
# Visual Studio 6 build log
|
||||
*.plg
|
||||
|
||||
# Visual Studio 6 workspace options file
|
||||
*.opt
|
||||
|
||||
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
|
||||
*.vbw
|
||||
|
||||
# Visual Studio LightSwitch build output
|
||||
**/*.HTMLClient/GeneratedArtifacts
|
||||
**/*.DesktopClient/GeneratedArtifacts
|
||||
**/*.DesktopClient/ModelManifest.xml
|
||||
**/*.Server/GeneratedArtifacts
|
||||
**/*.Server/ModelManifest.xml
|
||||
_Pvt_Extensions
|
||||
|
||||
# Paket dependency manager
|
||||
.paket/paket.exe
|
||||
paket-files/
|
||||
|
||||
# FAKE - F# Make
|
||||
.fake/
|
||||
|
||||
# JetBrains Rider
|
||||
.idea/
|
||||
*.sln.iml
|
||||
|
||||
# CodeRush personal settings
|
||||
.cr/personal
|
||||
|
||||
# Python Tools for Visual Studio (PTVS)
|
||||
__pycache__/
|
||||
*.pyc
|
||||
|
||||
# Cake - Uncomment if you are using it
|
||||
# tools/**
|
||||
# !tools/packages.config
|
||||
|
||||
# Tabs Studio
|
||||
*.tss
|
||||
|
||||
# Telerik's JustMock configuration file
|
||||
*.jmconfig
|
||||
|
||||
# BizTalk build output
|
||||
*.btp.cs
|
||||
*.btm.cs
|
||||
*.odx.cs
|
||||
*.xsd.cs
|
||||
|
||||
# OpenCover UI analysis results
|
||||
OpenCover/
|
||||
|
||||
# Azure Stream Analytics local run output
|
||||
ASALocalRun/
|
||||
|
||||
# MSBuild Binary and Structured Log
|
||||
*.binlog
|
||||
|
||||
# NVidia Nsight GPU debugger configuration file
|
||||
*.nvuser
|
||||
|
||||
# MFractors (Xamarin productivity tool) working folder
|
||||
.mfractor/
|
||||
|
||||
# Local History for Visual Studio
|
||||
.localhistory/
|
||||
|
||||
# BeatPulse healthcheck temp database
|
||||
healthchecksdb
|
||||
|
||||
|
|
@ -1,42 +0,0 @@
|
|||
ImageRuntimeVersion: v4.0.30319
|
||||
Assembly EpdBaseClr, Version=1.0.*, Culture=Invariant Language (Invariant Country):
|
||||
hash=SHA1, flags=PublicKey
|
||||
Assembly mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:
|
||||
hash=None, flags=None
|
||||
Assembly System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:
|
||||
hash=None, flags=None
|
||||
Assembly System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:
|
||||
hash=None, flags=None
|
||||
Assembly System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:
|
||||
hash=None, flags=None
|
||||
Class EpdBaseClr.sEpdBase: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit
|
||||
Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName
|
||||
Fields:
|
||||
System.ValueType RealTime DateTime IsBoxed : Public
|
||||
UInt32 CurrentDeviceID : Public
|
||||
Class EpdBaseClr.Epd2: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit
|
||||
Void .ctor(Int32): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName
|
||||
Fields:
|
||||
EpdBase.Epd2U* epd : Public
|
||||
EpdBaseClr.sEpdBase b : Public
|
||||
System.ValueType RealTime DateTime IsBoxed : Public
|
||||
System.String WearerName : Public
|
||||
System.String WearerID : Public
|
||||
Boolean Issued : Public
|
||||
Boolean isOn : Public
|
||||
Int32 InitRV : Public
|
||||
Int32 DiscRV : Public
|
||||
Int32 StatusRV : Public
|
||||
Int32 ReadDosesRV : Public
|
||||
Double Hp07 : Public
|
||||
Double Hp10 : Public
|
||||
Double Hp07Peak : Public
|
||||
Double Hp10Peak : Public
|
||||
Double alarmHP07 : Public
|
||||
Double alarmHP10 : Public
|
||||
Methods:
|
||||
Connect(): PrivateScope, Public, HideBySig
|
||||
GetStatus(): PrivateScope, Public, HideBySig
|
||||
GetDoses(): PrivateScope, Public, HideBySig
|
||||
SetDeIssued(): PrivateScope, Public, HideBySig
|
||||
SetIssued(): PrivateScope, Public, HideBySig
|
||||
|
|
@ -1,47 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp build" xmlns:build="http://schemas.microsoft.com/developer/appx/2015/build">
|
||||
<!--
|
||||
THIS PACKAGE MANIFEST FILE IS GENERATED BY THE BUILD PROCESS.
|
||||
|
||||
Changes to this file will be lost when it is regenerated. To correct errors in this file, edit the source .appxmanifest file.
|
||||
|
||||
For more information on package manifest files, see http://go.microsoft.com/fwlink/?LinkID=241727
|
||||
-->
|
||||
<Identity Name="35d52b50-cf69-44fe-9271-3054db72dc9b" Publisher="CN=admlvand" Version="1.0.0.0" ProcessorArchitecture="x86" />
|
||||
<mp:PhoneIdentity PhoneProductId="35d52b50-cf69-44fe-9271-3054db72dc9b" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
|
||||
<Properties>
|
||||
<DisplayName>eDosStationApp</DisplayName>
|
||||
<PublisherDisplayName>admlvand</PublisherDisplayName>
|
||||
<Logo>Assets\StoreLogo.png</Logo>
|
||||
</Properties>
|
||||
<Dependencies>
|
||||
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.15063.0" MaxVersionTested="10.0.17134.0" />
|
||||
<PackageDependency Name="Microsoft.VCLibs.140.00.Debug" MinVersion="14.0.27023.1" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" />
|
||||
</Dependencies>
|
||||
<Resources>
|
||||
<Resource Language="EN-US" />
|
||||
</Resources>
|
||||
<Applications>
|
||||
<Application Id="App" Executable="eDosStationApp.exe" EntryPoint="eDosStationApp.App">
|
||||
<uap:VisualElements DisplayName="eDosStationApp" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="eDosStationApp" BackgroundColor="transparent">
|
||||
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" />
|
||||
<uap:SplashScreen Image="Assets\SplashScreen.png" />
|
||||
</uap:VisualElements>
|
||||
</Application>
|
||||
</Applications>
|
||||
<Capabilities>
|
||||
<Capability Name="internetClient" />
|
||||
</Capabilities>
|
||||
<build:Metadata>
|
||||
<build:Item Name="cl.exe" Version="19.16.27026.1 built by: vcwrkspc" />
|
||||
<build:Item Name="VisualStudio" Version="15.0" />
|
||||
<build:Item Name="VisualStudioEdition" Value="Microsoft Visual Studio Enterprise 2017" />
|
||||
<build:Item Name="OperatingSystem" Version="10.0.17134.1 (WinBuild.160101.0800)" />
|
||||
<build:Item Name="Microsoft.Build.AppxPackage.dll" Version="15.0.28307.104" />
|
||||
<build:Item Name="ProjectGUID" Value="{a9a6d31b-34f4-47e4-bd05-2294c9a7b4dc}" />
|
||||
<build:Item Name="OptimizingToolset" Value="None" />
|
||||
<build:Item Name="TargetRuntime" Value="Native" />
|
||||
<build:Item Name="Microsoft.Windows.UI.Xaml.Build.Tasks.dll" Version="15.0.28307.102" />
|
||||
<build:Item Name="MakePri.exe" Version="10.0.17134.12 (WinBuild.160101.0800)" />
|
||||
</build:Metadata>
|
||||
</Package>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 7.5 KiB |
|
Before Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 3.1 KiB |
|
|
@ -1,141 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Machine>PC5013</Machine>
|
||||
<WindowsUser>admlvand</WindowsUser>
|
||||
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
||||
<TargetOsVersion>10.0</TargetOsVersion>
|
||||
<TargetOsDescription>Windows 10.0</TargetOsDescription>
|
||||
<SolutionConfiguration>Debug|Win32</SolutionConfiguration>
|
||||
<PackageArchitecture>x86</PackageArchitecture>
|
||||
<PackageIdentityName>35d52b50-cf69-44fe-9271-3054db72dc9b</PackageIdentityName>
|
||||
<PackageIdentityPublisher>CN=admlvand</PackageIdentityPublisher>
|
||||
<IntermediateOutputPath>C:\l\src\cs\eDos\eDosStationApp\Debug\</IntermediateOutputPath>
|
||||
<RemoteDeploymentType>CopyToDevice</RemoteDeploymentType>
|
||||
<PackageRegistrationPath>
|
||||
</PackageRegistrationPath>
|
||||
<RemoveNonLayoutFiles>false</RemoveNonLayoutFiles>
|
||||
<DeployOptionalPackages>false</DeployOptionalPackages>
|
||||
<WindowsSdkPath>C:\Program Files %28x86%29\Windows Kits\10\</WindowsSdkPath>
|
||||
<LayoutDir>C:\l\src\cs\eDos\Debug\eDosStationApp\AppX</LayoutDir>
|
||||
<RegisteredManifestChecksum>53B79674F34B4FC5E7E32B561BCA07B4CDCD5A740D530E81544C7B85B96E419A</RegisteredManifestChecksum>
|
||||
<RegisteredPackageMoniker>35d52b50-cf69-44fe-9271-3054db72dc9b_1.0.0.0_x86__w8sq1sj5c9ad8</RegisteredPackageMoniker>
|
||||
<RegisteredUserModeAppID>35d52b50-cf69-44fe-9271-3054db72dc9b_w8sq1sj5c9ad8!App</RegisteredUserModeAppID>
|
||||
<RegisteredPackageID>35d52b50-cf69-44fe-9271-3054db72dc9b</RegisteredPackageID>
|
||||
<RegisteredPackagePublisher>CN=admlvand</RegisteredPackagePublisher>
|
||||
<RegisteredVersion>1.0.0.0</RegisteredVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<AppXManifest Include="C:\l\src\cs\eDos\Debug\eDosStationApp\AppxManifest.xml">
|
||||
<PackagePath>AppxManifest.xml</PackagePath>
|
||||
<ReRegisterAppIfChanged>true</ReRegisterAppIfChanged>
|
||||
<Modified>2019-02-01T09:50:56.041</Modified>
|
||||
</AppXManifest>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\Debug\eDosStationApp\eDosStationApp.exe">
|
||||
<PackagePath>eDosStationApp.exe</PackagePath>
|
||||
<Modified>2019-02-01T09:50:54.509</Modified>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\Debug\eDosStationApp\eDosStationApp.winmd">
|
||||
<PackagePath>eDosStationApp.winmd</PackagePath>
|
||||
<Modified>2019-02-01T09:50:50.889</Modified>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\eDosStationApp\Assets\LockScreenLogo.scale-200.png">
|
||||
<PackagePath>Assets\LockScreenLogo.scale-200.png</PackagePath>
|
||||
<Modified>2019-02-01T09:44:13.907</Modified>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\eDosStationApp\Assets\SplashScreen.scale-200.png">
|
||||
<PackagePath>Assets\SplashScreen.scale-200.png</PackagePath>
|
||||
<ReRegisterAppIfChanged>true</ReRegisterAppIfChanged>
|
||||
<Modified>2019-02-01T09:44:13.907</Modified>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\eDosStationApp\Assets\Square150x150Logo.scale-200.png">
|
||||
<PackagePath>Assets\Square150x150Logo.scale-200.png</PackagePath>
|
||||
<ReRegisterAppIfChanged>true</ReRegisterAppIfChanged>
|
||||
<Modified>2019-02-01T09:44:13.907</Modified>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\eDosStationApp\Assets\Square44x44Logo.scale-200.png">
|
||||
<PackagePath>Assets\Square44x44Logo.scale-200.png</PackagePath>
|
||||
<ReRegisterAppIfChanged>true</ReRegisterAppIfChanged>
|
||||
<Modified>2019-02-01T09:44:13.907</Modified>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\eDosStationApp\Assets\Square44x44Logo.targetsize-24_altform-unplated.png">
|
||||
<PackagePath>Assets\Square44x44Logo.targetsize-24_altform-unplated.png</PackagePath>
|
||||
<ReRegisterAppIfChanged>true</ReRegisterAppIfChanged>
|
||||
<Modified>2019-02-01T09:44:13.907</Modified>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\eDosStationApp\Assets\StoreLogo.png">
|
||||
<PackagePath>Assets\StoreLogo.png</PackagePath>
|
||||
<ReRegisterAppIfChanged>true</ReRegisterAppIfChanged>
|
||||
<Modified>2019-02-01T09:44:13.907</Modified>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\eDosStationApp\Assets\Wide310x150Logo.scale-200.png">
|
||||
<PackagePath>Assets\Wide310x150Logo.scale-200.png</PackagePath>
|
||||
<ReRegisterAppIfChanged>true</ReRegisterAppIfChanged>
|
||||
<Modified>2019-02-01T09:44:13.907</Modified>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\Debug\eDosStationApp\SamplePixelShader.cso">
|
||||
<PackagePath>SamplePixelShader.cso</PackagePath>
|
||||
<Modified>2019-02-01T09:50:35.399</Modified>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\Debug\eDosStationApp\SampleVertexShader.cso">
|
||||
<PackagePath>SampleVertexShader.cso</PackagePath>
|
||||
<Modified>2019-02-01T09:50:35.628</Modified>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\Debug\eDosStationApp\App.xbf">
|
||||
<PackagePath>App.xbf</PackagePath>
|
||||
<Modified>2019-02-01T09:50:51.240</Modified>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\Debug\eDosStationApp\DirectXPage.xbf">
|
||||
<PackagePath>DirectXPage.xbf</PackagePath>
|
||||
<Modified>2019-02-01T09:50:51.241</Modified>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.UniversalCRT.Debug\10.0.17134.0\\redist\Debug\x86\ucrtbased.dll">
|
||||
<PackagePath>ucrtbased.dll</PackagePath>
|
||||
<Modified>2018-04-19T22:05:16.000</Modified>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\Debug\eDosStationApp\resources.pri">
|
||||
<PackagePath>resources.pri</PackagePath>
|
||||
<Modified>2019-02-01T09:50:55.570</Modified>
|
||||
</AppxPackagedFile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ResolvedSDKReference Include="C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\">
|
||||
<Name>Microsoft.VCLibs.140.00.Debug</Name>
|
||||
<Version>14.0.27023.1</Version>
|
||||
<Architecture>ARM</Architecture>
|
||||
<FrameworkIdentity>Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.27023.1, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27</FrameworkIdentity>
|
||||
<AppxLocation>C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\ARM\Microsoft.VCLibs.ARM.Debug.14.00.appx</AppxLocation>
|
||||
<MoreInfo>
|
||||
</MoreInfo>
|
||||
</ResolvedSDKReference>
|
||||
<ResolvedSDKReference Include="C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\">
|
||||
<Name>Microsoft.VCLibs.140.00.Debug</Name>
|
||||
<Version>14.0.27023.1</Version>
|
||||
<Architecture>ARM64</Architecture>
|
||||
<FrameworkIdentity>Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.27023.1, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27</FrameworkIdentity>
|
||||
<AppxLocation>C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\ARM64\Microsoft.VCLibs.ARM64.Debug.14.00.appx</AppxLocation>
|
||||
<MoreInfo>
|
||||
</MoreInfo>
|
||||
</ResolvedSDKReference>
|
||||
<ResolvedSDKReference Include="C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\">
|
||||
<Name>Microsoft.VCLibs.140.00.Debug</Name>
|
||||
<Version>14.0.27023.1</Version>
|
||||
<Architecture>x64</Architecture>
|
||||
<FrameworkIdentity>Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.27023.1, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27</FrameworkIdentity>
|
||||
<AppxLocation>C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\x64\Microsoft.VCLibs.x64.Debug.14.00.appx</AppxLocation>
|
||||
<MoreInfo>
|
||||
</MoreInfo>
|
||||
</ResolvedSDKReference>
|
||||
<ResolvedSDKReference Include="C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\">
|
||||
<Name>Microsoft.VCLibs.140.00.Debug</Name>
|
||||
<Version>14.0.27023.1</Version>
|
||||
<Architecture>x86</Architecture>
|
||||
<FrameworkIdentity>Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.27023.1, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27</FrameworkIdentity>
|
||||
<AppxLocation>C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\x86\Microsoft.VCLibs.x86.Debug.14.00.appx</AppxLocation>
|
||||
<MoreInfo>
|
||||
</MoreInfo>
|
||||
</ResolvedSDKReference>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
|
@ -1,47 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp build" xmlns:build="http://schemas.microsoft.com/developer/appx/2015/build">
|
||||
<!--
|
||||
THIS PACKAGE MANIFEST FILE IS GENERATED BY THE BUILD PROCESS.
|
||||
|
||||
Changes to this file will be lost when it is regenerated. To correct errors in this file, edit the source .appxmanifest file.
|
||||
|
||||
For more information on package manifest files, see http://go.microsoft.com/fwlink/?LinkID=241727
|
||||
-->
|
||||
<Identity Name="35d52b50-cf69-44fe-9271-3054db72dc9b" Publisher="CN=admlvand" Version="1.0.0.0" ProcessorArchitecture="x86" />
|
||||
<mp:PhoneIdentity PhoneProductId="35d52b50-cf69-44fe-9271-3054db72dc9b" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
|
||||
<Properties>
|
||||
<DisplayName>eDosStationApp</DisplayName>
|
||||
<PublisherDisplayName>admlvand</PublisherDisplayName>
|
||||
<Logo>Assets\StoreLogo.png</Logo>
|
||||
</Properties>
|
||||
<Dependencies>
|
||||
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.15063.0" MaxVersionTested="10.0.17134.0" />
|
||||
<PackageDependency Name="Microsoft.VCLibs.140.00.Debug" MinVersion="14.0.27023.1" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" />
|
||||
</Dependencies>
|
||||
<Resources>
|
||||
<Resource Language="EN-US" />
|
||||
</Resources>
|
||||
<Applications>
|
||||
<Application Id="App" Executable="eDosStationApp.exe" EntryPoint="eDosStationApp.App">
|
||||
<uap:VisualElements DisplayName="eDosStationApp" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="eDosStationApp" BackgroundColor="transparent">
|
||||
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" />
|
||||
<uap:SplashScreen Image="Assets\SplashScreen.png" />
|
||||
</uap:VisualElements>
|
||||
</Application>
|
||||
</Applications>
|
||||
<Capabilities>
|
||||
<Capability Name="internetClient" />
|
||||
</Capabilities>
|
||||
<build:Metadata>
|
||||
<build:Item Name="cl.exe" Version="19.16.27026.1 built by: vcwrkspc" />
|
||||
<build:Item Name="VisualStudio" Version="15.0" />
|
||||
<build:Item Name="VisualStudioEdition" Value="Microsoft Visual Studio Enterprise 2017" />
|
||||
<build:Item Name="OperatingSystem" Version="10.0.17134.1 (WinBuild.160101.0800)" />
|
||||
<build:Item Name="Microsoft.Build.AppxPackage.dll" Version="15.0.28307.104" />
|
||||
<build:Item Name="ProjectGUID" Value="{a9a6d31b-34f4-47e4-bd05-2294c9a7b4dc}" />
|
||||
<build:Item Name="OptimizingToolset" Value="None" />
|
||||
<build:Item Name="TargetRuntime" Value="Native" />
|
||||
<build:Item Name="Microsoft.Windows.UI.Xaml.Build.Tasks.dll" Version="15.0.28307.102" />
|
||||
<build:Item Name="MakePri.exe" Version="10.0.17134.12 (WinBuild.160101.0800)" />
|
||||
</build:Metadata>
|
||||
</Package>
|
||||
|
|
@ -1,114 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Machine>PC5013</Machine>
|
||||
<WindowsUser>admlvand</WindowsUser>
|
||||
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
||||
<TargetOsVersion>10.0</TargetOsVersion>
|
||||
<TargetOsDescription>Windows 10.0</TargetOsDescription>
|
||||
<SolutionConfiguration>Debug|Win32</SolutionConfiguration>
|
||||
<PackageArchitecture>x86</PackageArchitecture>
|
||||
<PackageIdentityName>35d52b50-cf69-44fe-9271-3054db72dc9b</PackageIdentityName>
|
||||
<PackageIdentityPublisher>CN=admlvand</PackageIdentityPublisher>
|
||||
<IntermediateOutputPath>C:\l\src\cs\eDos\eDosStationApp\Debug\</IntermediateOutputPath>
|
||||
<RemoteDeploymentType>CopyToDevice</RemoteDeploymentType>
|
||||
<PackageRegistrationPath></PackageRegistrationPath>
|
||||
<RemoveNonLayoutFiles>false</RemoveNonLayoutFiles>
|
||||
<DeployOptionalPackages>false</DeployOptionalPackages>
|
||||
<WindowsSdkPath>C:\Program Files %28x86%29\Windows Kits\10\</WindowsSdkPath>
|
||||
<LayoutDir>C:\l\src\cs\eDos\Debug\eDosStationApp\AppX</LayoutDir>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<AppXManifest Include="C:\l\src\cs\eDos\Debug\eDosStationApp\AppxManifest.xml">
|
||||
<PackagePath>AppxManifest.xml</PackagePath>
|
||||
<ReRegisterAppIfChanged>true</ReRegisterAppIfChanged>
|
||||
</AppXManifest>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\Debug\eDosStationApp\eDosStationApp.exe">
|
||||
<PackagePath>eDosStationApp.exe</PackagePath>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\Debug\eDosStationApp\eDosStationApp.winmd">
|
||||
<PackagePath>eDosStationApp.winmd</PackagePath>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\eDosStationApp\Assets\LockScreenLogo.scale-200.png">
|
||||
<PackagePath>Assets\LockScreenLogo.scale-200.png</PackagePath>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\eDosStationApp\Assets\SplashScreen.scale-200.png">
|
||||
<PackagePath>Assets\SplashScreen.scale-200.png</PackagePath>
|
||||
<ReRegisterAppIfChanged>true</ReRegisterAppIfChanged>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\eDosStationApp\Assets\Square150x150Logo.scale-200.png">
|
||||
<PackagePath>Assets\Square150x150Logo.scale-200.png</PackagePath>
|
||||
<ReRegisterAppIfChanged>true</ReRegisterAppIfChanged>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\eDosStationApp\Assets\Square44x44Logo.scale-200.png">
|
||||
<PackagePath>Assets\Square44x44Logo.scale-200.png</PackagePath>
|
||||
<ReRegisterAppIfChanged>true</ReRegisterAppIfChanged>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\eDosStationApp\Assets\Square44x44Logo.targetsize-24_altform-unplated.png">
|
||||
<PackagePath>Assets\Square44x44Logo.targetsize-24_altform-unplated.png</PackagePath>
|
||||
<ReRegisterAppIfChanged>true</ReRegisterAppIfChanged>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\eDosStationApp\Assets\StoreLogo.png">
|
||||
<PackagePath>Assets\StoreLogo.png</PackagePath>
|
||||
<ReRegisterAppIfChanged>true</ReRegisterAppIfChanged>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\eDosStationApp\Assets\Wide310x150Logo.scale-200.png">
|
||||
<PackagePath>Assets\Wide310x150Logo.scale-200.png</PackagePath>
|
||||
<ReRegisterAppIfChanged>true</ReRegisterAppIfChanged>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\Debug\eDosStationApp\SamplePixelShader.cso">
|
||||
<PackagePath>SamplePixelShader.cso</PackagePath>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\Debug\eDosStationApp\SampleVertexShader.cso">
|
||||
<PackagePath>SampleVertexShader.cso</PackagePath>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\Debug\eDosStationApp\App.xbf">
|
||||
<PackagePath>App.xbf</PackagePath>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\Debug\eDosStationApp\DirectXPage.xbf">
|
||||
<PackagePath>DirectXPage.xbf</PackagePath>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.UniversalCRT.Debug\10.0.17134.0\\redist\Debug\x86\ucrtbased.dll">
|
||||
<PackagePath>ucrtbased.dll</PackagePath>
|
||||
</AppxPackagedFile>
|
||||
<AppxPackagedFile Include="C:\l\src\cs\eDos\Debug\eDosStationApp\resources.pri">
|
||||
<PackagePath>resources.pri</PackagePath>
|
||||
</AppxPackagedFile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ResolvedSDKReference Include="C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\">
|
||||
<Name>Microsoft.VCLibs.140.00.Debug</Name>
|
||||
<Version>14.0.27023.1</Version>
|
||||
<Architecture>ARM</Architecture>
|
||||
<FrameworkIdentity>Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.27023.1, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27</FrameworkIdentity>
|
||||
<AppxLocation>C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\ARM\Microsoft.VCLibs.ARM.Debug.14.00.appx</AppxLocation>
|
||||
<MoreInfo></MoreInfo>
|
||||
</ResolvedSDKReference>
|
||||
<ResolvedSDKReference Include="C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\">
|
||||
<Name>Microsoft.VCLibs.140.00.Debug</Name>
|
||||
<Version>14.0.27023.1</Version>
|
||||
<Architecture>ARM64</Architecture>
|
||||
<FrameworkIdentity>Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.27023.1, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27</FrameworkIdentity>
|
||||
<AppxLocation>C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\ARM64\Microsoft.VCLibs.ARM64.Debug.14.00.appx</AppxLocation>
|
||||
<MoreInfo></MoreInfo>
|
||||
</ResolvedSDKReference>
|
||||
<ResolvedSDKReference Include="C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\">
|
||||
<Name>Microsoft.VCLibs.140.00.Debug</Name>
|
||||
<Version>14.0.27023.1</Version>
|
||||
<Architecture>x64</Architecture>
|
||||
<FrameworkIdentity>Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.27023.1, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27</FrameworkIdentity>
|
||||
<AppxLocation>C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\x64\Microsoft.VCLibs.x64.Debug.14.00.appx</AppxLocation>
|
||||
<MoreInfo></MoreInfo>
|
||||
</ResolvedSDKReference>
|
||||
<ResolvedSDKReference Include="C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\">
|
||||
<Name>Microsoft.VCLibs.140.00.Debug</Name>
|
||||
<Version>14.0.27023.1</Version>
|
||||
<Architecture>x86</Architecture>
|
||||
<FrameworkIdentity>Name = Microsoft.VCLibs.140.00.Debug, MinVersion = 14.0.27023.1, Publisher = %27CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US%27</FrameworkIdentity>
|
||||
<AppxLocation>C:\Program Files %28x86%29\Microsoft SDKs\Windows Kits\10\ExtensionSDKs\Microsoft.VCLibs\14.0\.\AppX\Debug\x86\Microsoft.VCLibs.x86.Debug.14.00.appx</AppxLocation>
|
||||
<MoreInfo></MoreInfo>
|
||||
</ResolvedSDKReference>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
; Listing generated by Microsoft (R) Optimizing Compiler Version 19.16.27026.1
|
||||
|
||||
; Generated by VC++ for Common Language Runtime
|
||||
.file "C:\Users\admlvand\AppData\Local\Temp\.NETFramework,Version=v4.7.2.AssemblyAttributes.cpp"
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
c:\l\src\cs\edos\epdbase\debug\epdbase.pch
|
||||
c:\l\src\cs\edos\epdbase\debug\epdbase.pdb
|
||||
c:\l\src\cs\edos\epdbase\debug\stdafx.obj
|
||||
c:\l\src\cs\edos\epdbase\debug\timefunctions.obj
|
||||
c:\l\src\cs\edos\epdbase\debug\assemblyinfo.obj
|
||||
c:\l\src\cs\edos\epdbase\debug\epdbase.obj
|
||||
c:\l\src\cs\edos\epdbase\debug\.netframework,version=v4.7.2.assemblyattributes.obj
|
||||
c:\l\src\cs\edos\epdbase\debug\.netframework,version=v4.7.2.assemblyattributes.asm
|
||||
c:\l\src\cs\edos\debug\epdbase.lib
|
||||
c:\l\src\cs\edos\epdbase\debug\app.res
|
||||
c:\l\src\cs\edos\epdbase\debug\epdbase.vcxprojassemblyreference.cache
|
||||
c:\l\src\cs\edos\debug\epdbase.pdb
|
||||
c:\l\src\cs\edos\epdbase\debug\epdbase.tlog\cl.command.1.tlog
|
||||
c:\l\src\cs\edos\epdbase\debug\epdbase.tlog\cl.read.1.tlog
|
||||
c:\l\src\cs\edos\epdbase\debug\epdbase.tlog\cl.write.1.tlog
|
||||
c:\l\src\cs\edos\epdbase\debug\epdbase.tlog\lib-link-cvtres.read.1.tlog
|
||||
c:\l\src\cs\edos\epdbase\debug\epdbase.tlog\lib-link-cvtres.write.1.tlog
|
||||
c:\l\src\cs\edos\epdbase\debug\epdbase.tlog\lib.command.1.tlog
|
||||
c:\l\src\cs\edos\epdbase\debug\epdbase.tlog\metagen.read.1.tlog
|
||||
c:\l\src\cs\edos\epdbase\debug\epdbase.tlog\metagen.write.1.tlog
|
||||
c:\l\src\cs\edos\epdbase\debug\epdbase.tlog\rc.command.1.tlog
|
||||
c:\l\src\cs\edos\epdbase\debug\epdbase.tlog\rc.read.1.tlog
|
||||
c:\l\src\cs\edos\epdbase\debug\epdbase.tlog\rc.write.1.tlog
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
EpdBase.cpp
|
||||
c:\l\src\cs\edos\epdbase\timefunctions.h(12): warning C4091: 'static ': ignored on left of 'TimeFunctions' when no variable is declared
|
||||
c:\l\src\cs\edos\epdbase\epdbase.cpp(96): warning C4244: '=': conversion from 'DWORD' to 'WORD', possible loss of data
|
||||
c:\l\src\cs\edos\epdbase\epdbase.cpp(328): warning C4244: 'return': conversion from 'DWORD' to 'WORD', possible loss of data
|
||||
LINK : warning LNK4068: /MACHINE not specified; defaulting to X86
|
||||
.NETFramework,Version=v4.7.2.AssemblyAttributes.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
|
||||
AssemblyInfo.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library
|
||||
EpdBase.vcxproj -> C:\l\src\cs\eDos\Debug\EpdBase.lib
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
#TargetFrameworkVersion=v4.7.2:PlatformToolSet=v141:EnableManagedIncrementalBuild=true:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.17763.0
|
||||
Debug|Win32|C:\l\src\cs\eDos\|
|
||||
|
|
@ -1 +0,0 @@
|
|||
|
||||
|
|
@ -1 +0,0 @@
|
|||
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
; Listing generated by Microsoft (R) Optimizing Compiler Version 19.16.27026.1
|
||||
|
||||
; Generated by VC++ for Common Language Runtime
|
||||
.file "C:\Users\admlvand\AppData\Local\Temp\.NETFramework,Version=v4.7.2.AssemblyAttributes.cpp"
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
c:\l\src\cs\edos\epdbaseclr\debug\epdbaseclr.pch
|
||||
c:\l\src\cs\edos\epdbaseclr\debug\vc141.pdb
|
||||
c:\l\src\cs\edos\epdbaseclr\debug\stdafx.obj
|
||||
c:\l\src\cs\edos\epdbaseclr\debug\epdbaseclr.obj
|
||||
c:\l\src\cs\edos\epdbaseclr\debug\assemblyinfo.obj
|
||||
c:\l\src\cs\edos\epdbaseclr\debug\.netframework,version=v4.7.2.assemblyattributes.obj
|
||||
c:\l\src\cs\edos\epdbaseclr\debug\.netframework,version=v4.7.2.assemblyattributes.asm
|
||||
c:\l\src\cs\edos\debug\epdbaseclr.dll
|
||||
c:\l\src\cs\edos\debug\epdbaseclr.pdb
|
||||
c:\l\src\cs\edos\epdbaseclr\debug\app.res
|
||||
c:\l\src\cs\edos\epdbaseclr\debug\epdbaseclr.tlog\cl.command.1.tlog
|
||||
c:\l\src\cs\edos\epdbaseclr\debug\epdbaseclr.tlog\cl.read.1.tlog
|
||||
c:\l\src\cs\edos\epdbaseclr\debug\epdbaseclr.tlog\cl.write.1.tlog
|
||||
c:\l\src\cs\edos\epdbaseclr\debug\epdbaseclr.tlog\link.command.1.tlog
|
||||
c:\l\src\cs\edos\epdbaseclr\debug\epdbaseclr.tlog\link.read.1.tlog
|
||||
c:\l\src\cs\edos\epdbaseclr\debug\epdbaseclr.tlog\link.write.1.tlog
|
||||
c:\l\src\cs\edos\epdbaseclr\debug\epdbaseclr.tlog\metagen.read.1.tlog
|
||||
c:\l\src\cs\edos\epdbaseclr\debug\epdbaseclr.tlog\metagen.write.1.tlog
|
||||
c:\l\src\cs\edos\epdbaseclr\debug\epdbaseclr.tlog\rc.command.1.tlog
|
||||
c:\l\src\cs\edos\epdbaseclr\debug\epdbaseclr.tlog\rc.read.1.tlog
|
||||
c:\l\src\cs\edos\epdbaseclr\debug\epdbaseclr.tlog\rc.write.1.tlog
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
AssemblyInfo.obj : MSIL module encountered; incremental linking is disabled for MSIL; performing full link
|
||||
EpdBaseClr.vcxproj -> C:\l\src\cs\eDos\Debug\EpdBaseClr.dll
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
#TargetFrameworkVersion=v4.7.2:PlatformToolSet=v141:EnableManagedIncrementalBuild=true:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.17763.0
|
||||
Debug|Win32|C:\l\src\cs\eDos\|
|
||||
|
|
@ -1 +0,0 @@
|
|||
|
||||
|
|
@ -1 +0,0 @@
|
|||
|
||||